From b64b106fbdb2451a120fdef9fd9cd96947e4a3d3 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Mon, 27 Jan 2020 09:36:41 +0100 Subject: [PATCH] use pypi wheel --- cibuildwheel/macos.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index 7ca603c0..d7a50d0c 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -96,9 +96,7 @@ def build(project_dir, output_dir, test_command, test_requires, test_extras, bef call(['python', get_pip_script, '--no-setuptools', '--no-wheel'], env=env, cwd="/tmp") assert os.path.exists(os.path.join(installation_bin_path, 'pip')) call(['pip', '--version'], env=env) - call(['pip', 'install', '--upgrade', 'setuptools'], env=env) - call(['pip', 'install', 'git+https://github.com/pypa/wheel.git@882650d0fd2fadd75f4ea7c5d6b62f15f81b398a'], env=env) - call(['pip', 'install', 'delocate'], env=env) + call(['pip', 'install', '--upgrade', 'setuptools', 'wheel', 'delocate'], env=env) # run the before_build command if before_build: