Skip to content

Commit 534d821

Browse files
hugovkradarhere
andcommitted
Test NumPy on Python 3.13
Co-Authored-By: Andrew Murray <[email protected]>
1 parent f3719a9 commit 534d821

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.ci/install.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ python3 -m pip install -U pytest-timeout
3737
python3 -m pip install pyroma
3838

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

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

.github/workflows/macos-install.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ python3 -m pip install -U pytest
2525
python3 -m pip install -U pytest-cov
2626
python3 -m pip install -U pytest-timeout
2727
python3 -m pip install pyroma
28-
29-
# TODO Update condition when NumPy supports 3.13
30-
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install numpy ; fi
28+
python3 -m pip install numpy
3129

3230
# extra test images
3331
pushd depends && ./install_extra_test_images.sh && popd

.github/workflows/wheels-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ elif [ "${AUDITWHEEL_POLICY::9}" == "musllinux" ]; then
1212
else
1313
yum install -y fribidi
1414
fi
15-
if [ "${AUDITWHEEL_POLICY::9}" != "musllinux" ] && !([[ "$OSTYPE" == "darwin"* ]] && [[ $(python3 --version) == *"3.13."* ]]); then
15+
if [ "${AUDITWHEEL_POLICY::9}" != "musllinux" ]; then
1616
python3 -m pip install numpy
1717
fi
1818

0 commit comments

Comments
 (0)