Skip to content

Commit 28d518f

Browse files
committed
NumPy now supports Python 3.12
1 parent 8934081 commit 28d518f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.ci/install.sh

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

4040
if [[ $(uname) != CYGWIN* ]]; then
41-
# TODO Remove condition when NumPy supports 3.12
42-
if ! [ "$GHA_PYTHON_VERSION" == "3.12-dev" ]; then python3 -m pip install numpy ; fi
41+
python3 -m pip install numpy
4342

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

.github/workflows/macos-install.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ python3 -m pip install -U pytest-cov
1313
python3 -m pip install -U pytest-timeout
1414
python3 -m pip install pyroma
1515

16-
# TODO Remove condition when NumPy supports 3.12
17-
if ! [ "$GHA_PYTHON_VERSION" == "3.12-dev" ]; then python3 -m pip install numpy ; fi
16+
python3 -m pip install numpy
1817

1918
# extra test images
2019
pushd depends && ./install_extra_test_images.sh && popd

0 commit comments

Comments
 (0)