From daf850a7fc87285ba573c1580f92027a1de7db59 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 7 May 2021 18:16:47 -0400 Subject: [PATCH] fix: missing f for fstrings in bin (#659) --- bin/update_dependencies.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/update_dependencies.py b/bin/update_dependencies.py index 7e3d60c5..2aa2b2fd 100755 --- a/bin/update_dependencies.py +++ b/bin/update_dependencies.py @@ -27,7 +27,7 @@ if "--no-docker" in sys.argv: "--allow-unsafe", "--upgrade", "cibuildwheel/resources/constraints.in", - "--output-file=cibuildwheel/resources/constraints-python{python_version}.txt", + f"--output-file=cibuildwheel/resources/constraints-python{python_version}.txt", ], check=True, ) @@ -39,7 +39,7 @@ else: python_path = f"/opt/python/cp{python_version}-cp{python_version}{abi_flags}/bin/" command = ( f"{python_path}pip install pip-tools && " - "{python_path}pip-compile --allow-unsafe --upgrade " + f"{python_path}pip-compile --allow-unsafe --upgrade " "cibuildwheel/resources/constraints.in " f"--output-file cibuildwheel/resources/constraints-python{python_version}.txt" ) @@ -49,7 +49,7 @@ else: "run", "--rm", "--env=CUSTOM_COMPILE_COMMAND", - "--volume={os.getcwd()}:/volume", + f"--volume={os.getcwd()}:/volume", "--workdir=/volume", image_runner, "bash",