check_call does require paths as strings on CPython 3.6 Windows

This commit is contained in:
Joe Rickerby
2020-05-15 15:18:17 +01:00
parent 13907188a1
commit 420995f567
+1 -1
View File
@@ -33,7 +33,7 @@ def cibuildwheel_get_build_identifiers(project_path, env=None):
for the current platform.
'''
cmd_output = subprocess.check_output(
[sys.executable, '-m', 'cibuildwheel', '--print-build-identifiers', project_path],
[sys.executable, '-m', 'cibuildwheel', '--print-build-identifiers', str(project_path)],
universal_newlines=True,
env=env,
)