Use f-strings

Now that minimum python supported is 3.6, we can use f-strings !
This commit is contained in:
mayeut
2020-05-09 11:53:20 +02:00
parent ac0012e3da
commit 5e767fcc9a
9 changed files with 33 additions and 40 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ def build(options: BuildOptions) -> None:
if not platform_configs:
continue
container_name = 'cibuildwheel-{}'.format(uuid.uuid4())
container_name = f'cibuildwheel-{uuid.uuid4()}'
try:
shell_cmd = ['linux32', '/bin/bash'] if platform_tag.endswith("i686") else ['/bin/bash']