From bf272fe9a6ceca828ff1fdcd9ae81b03b02b2f6f Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 5 Jan 2021 17:01:47 +0000 Subject: [PATCH] Use same interpreter for sample_build.py (for local testing of arm64) --- bin/sample_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sample_build.py b/bin/sample_build.py index d2adb022..c995defa 100755 --- a/bin/sample_build.py +++ b/bin/sample_build.py @@ -22,4 +22,4 @@ if __name__ == '__main__': options.project_python_path, project_dir ], check=True) - exit(subprocess.run(['cibuildwheel'], cwd=project_dir).returncode) + exit(subprocess.run([sys.executable, '-m', 'cibuildwheel'], cwd=project_dir).returncode)