Skip to content

Commit

Permalink
Install nightly NumPy for free-threaded
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jul 4, 2024
1 parent 701539d commit 79e18b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ python3 -m pip install pyroma

if [[ $(uname) != CYGWIN* ]]; then
# TODO Update condition when NumPy supports free-threading
if ! [[ "$GHA_PYTHON_VERSION" == "3.13-dev" ]]; then python3 -m pip install numpy ; fi
if [[ "$GHA_PYTHON_VERSION" == "3.13-dev" ]]; then
python3 -m pip install numpy
else
python3 -m pip install numpy --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
fi

# PyQt6 doesn't support PyPy3
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
Expand Down

0 comments on commit 79e18b5

Please sign in to comment.