File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if [[ $(uname) != CYGWIN* ]]; then
23
23
sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\
24
24
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
25
25
cmake meson imagemagick libharfbuzz-dev libfribidi-dev\
26
- sway wl-clipboard
26
+ sway wl-clipboard libopenblas-dev
27
27
fi
28
28
29
29
python3 -m pip install --upgrade pip
@@ -38,8 +38,7 @@ python3 -m pip install -U pytest-timeout
38
38
python3 -m pip install pyroma
39
39
40
40
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
43
42
44
43
# PyQt6 doesn't support PyPy3
45
44
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype libraqm
6
+ export PKG_CONFIG_PATH=" /usr/local/opt/openblas/lib/pkgconfig"
6
7
7
8
PYTHONOPTIMIZE=0 python3 -m pip install cffi
8
9
python3 -m pip install coverage
@@ -13,8 +14,7 @@ python3 -m pip install -U pytest-cov
13
14
python3 -m pip install -U pytest-timeout
14
15
python3 -m pip install pyroma
15
16
16
- # TODO Remove condition when NumPy supports 3.12
17
- if ! [ " $GHA_PYTHON_VERSION " == " 3.12-dev" ]; then python3 -m pip install numpy ; fi
17
+ python3 -m pip install numpy
18
18
19
19
# extra test images
20
20
pushd depends && ./install_extra_test_images.sh && popd
Original file line number Diff line number Diff line change @@ -102,10 +102,10 @@ jobs:
102
102
run : |
103
103
bash.exe .ci/install.sh
104
104
105
- - name : Install latest NumPy
105
+ - name : Upgrade NumPy
106
106
shell : dash.exe -l "{0}"
107
107
run : |
108
- python3 -m pip install -U numpy
108
+ python3 -m pip install -U " numpy<1.26"
109
109
110
110
- name : Build
111
111
shell : bash.exe -eo pipefail -o igncr "{0}"
You can’t perform that action at this time.
0 commit comments