8000 ci: Switch to apt instead of apt-get. · matplotlib/matplotlib@c6b95d7 · GitHub
[go: up one dir, main page]

Skip to content

Commit c6b95d7

Browse files
committed
ci: Switch to apt instead of apt-get.
1 parent 2b7ad5f commit c6b95d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ version: 2.1
1111
apt-run: &apt-install
1212
name: Install apt packages
1313
command: |
14-
sudo apt-get -qq update
15-
sudo apt-get install -y \
14+
sudo apt -qq update
15+
sudo apt install -y \
1616
inkscape \
1717
ffmpeg \
1818
dvipng \

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ steps:
5959
set -e
6060
case "$(python -c 'import sys; print(sys.platform)')" in
6161
linux)
62-
sudo apt-get update
63-
sudo apt-get install \
62+
sudo apt update
63+
sudo apt install \
6464
cm-super \
6565
dvipng \
6666
ffmpeg \

0 commit comments

Comments
 (0)
0