Remove quotes from command line argument lists

This commit is contained in:
Joe Rickerby
2021-05-01 19:39:36 +01:00
parent d33fffdc62
commit 5716296071
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -128,13 +128,13 @@ def bump_version() -> None:
subprocess.run([ subprocess.run([
'git', 'commit', 'git', 'commit',
'--all', '--all',
f"--message='Bump version: v{new_version}'", f"--message=Bump version: v{new_version}",
], check=True) ], check=True)
subprocess.run([ subprocess.run([
'git', 'tag', 'git', 'tag',
'--annotate', '--annotate',
f"--message='v{new_version}'", f"--message=v{new_version}",
f'v{new_version}', f'v{new_version}',
], check=True) ], check=True)
+1 -1
View File
@@ -61,7 +61,7 @@ def main():
'gh', 'pr', 'create', 'gh', 'pr', 'create',
'--repo=joerick/cibuildwheel', '--repo=joerick/cibuildwheel',
'--base=master', '--base=master',
"--title='Update dependencies'", "--title=Update dependencies",
f"--body='{body}'", f"--body='{body}'",
], ],
check=True check=True