1
0
Fork 0

Merging upstream version 1.25.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 19:01:26 +01:00
parent 6d1b670d6a
commit ebfd41fa46
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
9 changed files with 53 additions and 16 deletions

View file

@ -72,7 +72,7 @@ def upload_distribution_files():
def push_to_github():
run_step('git', 'push', 'origin', 'master')
run_step('git', 'push', 'origin', 'main')
def push_tags_to_github():
@ -90,7 +90,6 @@ if __name__ == '__main__':
subprocess.check_output = lambda x: x
ver = version('mycli/__init__.py')
print('Releasing Version:', ver)
parser = OptionParser()
parser.add_option(
@ -107,6 +106,8 @@ if __name__ == '__main__':
CONFIRM_STEPS = popts.confirm_steps
DRY_RUN = popts.dry_run
print('Releasing Version:', ver)
if not click.confirm('Are you sure?', default=False):
sys.exit(1)