From 420995f5675665ff7055e75ba377b82d45874b76 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 15 May 2020 15:18:17 +0100 Subject: [PATCH] check_call does require paths as strings on CPython 3.6 Windows --- test/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.py b/test/utils.py index 609ab9d7..1c2733c6 100644 --- a/test/utils.py +++ b/test/utils.py @@ -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, )