Skip to content

Commit ee7dccc

Browse files
committed
Skip NumPy on PyPy3.11
1 parent 9f1d748 commit ee7dccc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.ci/install.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ python3 -m pip install -U pytest-timeout
3838
python3 -m pip install pyroma
3939

4040
if [[ $(uname) != CYGWIN* ]]; then
41-
python3 -m pip install numpy
41+
# NumPy doesn't support PyPy3.11
42+
if [[ $GHA_PYTHON_VERSION != pypy3.11 ]]; then
43+
python3 -m pip install numpy
44+
fi
4245

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

0 commit comments

Comments
 (0)