@@ -97,12 +97,14 @@ jobs:
97
97
Linux)
98
98
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries
99
99
sudo apt-get update -yy
100
- sudo apt-get install -yy \
100
+ sudo apt-get install -yy --no-install-recommends \
101
101
ccache \
102
102
cm-super \
103
103
dvipng \
104
104
ffmpeg \
105
+ fonts-freefont-otf \
105
106
fonts-noto-cjk \
107
+ fonts-wqy-zenhei \
106
108
gdb \
107
109
gir1.2-gtk-3.0 \
108
110
graphviz \
@@ -123,21 +125,20 @@ jobs:
123
125
libxcb-render-util0 \
124
126
libxcb-xinerama0 \
125
127
lmodern \
126
- fonts-freefont-otf \
127
- texlive-pictures \
128
128
pkg-config \
129
129
qtbase5-dev \
130
130
texlive-fonts-recommended \
131
131
texlive-latex-base \
132
132
texlive-latex-extra \
133
133
texlive-latex-recommended \
134
134
texlive-luatex \
135
- texlive-xetex \
136
- ttf-wqy-zenhei
135
+ texlive-pictures \
136
+ texlive-xetex
137
137
if [[ "${{ matrix.os }}" = ubuntu-20.04 ]]; then
138
- sudo apt-get install -yy libopengl0
138
+ sudo apt-get install -yy --no-install-recommends libopengl0
139
139
else # ubuntu-22.04
140
- sudo apt-get install -yy gir1.2-gtk-4.0 libnotify4
140
+ sudo apt-get install -yy --no-install-recommends \
141
+ gir1.2-gtk-4.0 libnotify4
141
142
fi
142
143
;;
143
144
macOS)
@@ -178,10 +179,10 @@ jobs:
178
179
~/.cache/matplotlib
179
180
!~/.cache/matplotlib/tex.cache
180
181
!~/.cache/matplotlib/test_cache
181
- key : 3 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-${{ github.ref }}-${{ github.sha }}
182
+ key : 4 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-${{ github.ref }}-${{ github.sha }}
182
183
restore-keys : |
183
- 3 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-${{ github.ref }}-
184
- 3 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-
184
+ 4 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-${{ github.ref }}-
185
+ 4 -${{ runner.os }}-py${{ matrix.python-version }}-mpl-
185
186
186
187
- name : Install Python dependencies
187
188
run : |
0 commit comments