From bd45b1c9011bfdd32119ae39f4c4b7d8c3a1f3d2 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 24 Jan 2021 14:46:46 +0000 Subject: [PATCH] Remove pinned pip install, virtualenv should bundle this now --- cibuildwheel/macos.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index 8635f8ea..3315bd26 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -400,12 +400,6 @@ def build(options: BuildOptions) -> None: # check that we are using the Python from the virtual environment call_with_arch(['which', 'python'], env=virtualenv_env) - # ensure we have a recent enough pip in the virtualenv - # TODO(joerick): remove this before merge? virtualenv should be bundling a - # recent enough seed version. Waiting on this PR: - # https://github.com/pypa/virtualenv/pull/2036 - call_with_arch(['pip', 'install', 'pip>=20.3.3'], env=virtualenv_env) - if options.before_test: before_test_prepared = prepare_command(options.before_test, project='.', package=options.package_dir) call_with_arch(before_test_prepared, env=virtualenv_env, shell=True)