Fix pathlib error on Windows

This commit is contained in:
Joe Rickerby
2020-05-03 16:53:15 +01:00
parent 566a880099
commit a9c475a910
+1 -1
View File
@@ -33,7 +33,7 @@ def cibuildwheel_get_build_identifiers(project_path, env=None):
for the current platform. for the current platform.
''' '''
cmd_output = subprocess.check_output( 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, universal_newlines=True,
env=env, env=env,
) )