File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 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 \
@@ -135,9 +135,10 @@ jobs:
135
135
texlive-pictures \
136
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 : |
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ stages:
92
92
linux)
93
93
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries
94
94
sudo apt update
95
- sudo apt install \
95
+ sudo apt install --no-install-recommends \
96
96
cm-super \
97
97
dvipng \
98
98
ffmpeg \
You can’t perform that action at this time.
0 commit comments