We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f20aa commit 0c751d8Copy full SHA for 0c751d8
build_tools/azure/install.sh
@@ -76,8 +76,9 @@ python_environment_install_and_activate() {
76
python3.13t -m venv $VIRTUALENV
77
source $VIRTUALENV/bin/activate
78
pip install -r "${LOCK_FILE}"
79
- # TODO for now need pip 24.1b1 to find free-threaded wheels
80
- pip install -U --pre pip
+ # TODO you need pip>=24.1 to find free-threaded wheels. This may be
+ # removed when the underlying Ubuntu image has pip>=24.1.
81
+ pip install 'pip>=24.1'
82
# TODO When there are CPython 3.13 free-threaded wheels for numpy,
83
# scipy and cython move them to
84
# build_tools/azure/cpython_free_threaded_requirements.txt. For now we
0 commit comments