We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f1d748 commit ee7dcccCopy full SHA for ee7dccc
.ci/install.sh
@@ -38,7 +38,10 @@ python3 -m pip install -U pytest-timeout
38
python3 -m pip install pyroma
39
40
if [[ $(uname) != CYGWIN* ]]; then
41
- python3 -m pip install numpy
+ # NumPy doesn't support PyPy3.11
42
+ if [[ $GHA_PYTHON_VERSION != pypy3.11 ]]; then
43
+ python3 -m pip install numpy
44
+ fi
45
46
# PyQt6 doesn't support PyPy3
47
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
0 commit comments