Skip to content

Commit 0c751d8

Browse files
authored
CI Use pip 24.1 in free-threaded build (scikit-learn#29344)
1 parent 64f20aa commit 0c751d8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build_tools/azure/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ python_environment_install_and_activate() {
7676
python3.13t -m venv $VIRTUALENV
7777
source $VIRTUALENV/bin/activate
7878
pip install -r "${LOCK_FILE}"
79-
# TODO for now need pip 24.1b1 to find free-threaded wheels
80-
pip install -U --pre pip
79+
# TODO you need pip>=24.1 to find free-threaded wheels. This may be
80+
# removed when the underlying Ubuntu image has pip>=24.1.
81+
pip install 'pip>=24.1'
8182
# TODO When there are CPython 3.13 free-threaded wheels for numpy,
8283
# scipy and cython move them to
8384
# build_tools/azure/cpython_free_threaded_requirements.txt. For now we

0 commit comments

Comments
 (0)