Skip to content

Commit

Permalink
CircleCI: install pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed May 26, 2021
1 parent 8d60fb5 commit b08dde7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
path: .circleci/artifacts.html
destination: artifacts.html

- run:
name: Installing apt Packages
command: |
apt-get update
apt-get install -y python3-pip librsvg2-bin
- restore_cache:
keys:
- v1-deps-{{ .Branch }}-{{ checksum "doc/requirements.txt" }}
Expand All @@ -44,12 +50,6 @@ jobs:
- ~/.cache/pip
key: v1-deps-{{ .Branch }}-{{ checksum "doc/requirements.txt" }}

- run:
name: Installing apt Packages
command: |
apt-get update
apt-get install -y librsvg2-bin
- run:
name: Show pandoc version
command: |
Expand Down

0 comments on commit b08dde7

Please sign in to comment.