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([
'git', 'commit',
'--all',
f"--message='Bump version: v{new_version}'",
f"--message=Bump version: v{new_version}",
], check=True)
subprocess.run([
'git', 'tag',
'--annotate',
f"--message='v{new_version}'",
f"--message=v{new_version}",
f'v{new_version}',
], check=True)
+1 -1
View File
@@ -61,7 +61,7 @@ def main():
'gh', 'pr', 'create',
'--repo=joerick/cibuildwheel',
'--base=master',
"--title='Update dependencies'",
"--title=Update dependencies",
f"--body='{body}'",
],
check=True