Skip to content

Commit

Permalink
Test NumPy 2 pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 2, 2024
1 parent 7f9a174 commit 336a4a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ python3 -m pip install pyroma

if [[ $(uname) != CYGWIN* ]]; then
# TODO Update condition when NumPy supports 3.13
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install numpy ; fi
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install -U numpy --pre ; fi

# PyQt6 doesn't support PyPy3
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ python3 -m pip install -U pytest-timeout
python3 -m pip install pyroma

# TODO Update condition when NumPy supports 3.13
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install numpy ; fi
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install -U numpy --pre ; fi

# extra test images
pushd depends && ./install_extra_test_images.sh && popd
2 changes: 1 addition & 1 deletion .github/workflows/wheels-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
yum install -y fribidi
fi
if [ "${AUDITWHEEL_POLICY::9}" != "musllinux" ]; then
python3 -m pip install numpy
python3 -m pip install -U numpy --pre
fi

if [ ! -d "test-images-main" ]; then
Expand Down

0 comments on commit 336a4a4

Please sign in to comment.