Skip to content

Commit

Permalink
CircleCI: switch to texlive/texlive image
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Apr 27, 2023
1 parent c841910 commit 1cc1db0
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ version: 2
jobs:
build_docs:
docker:
# https://github.com/dante-ev/docker-texlive
- image: danteev/texlive
- image: texlive/texlive

working_directory: ~/checkout

environment:
PIP_INSTALL: python3 -m pip install --user --progress-bar off --upgrade
PIP_INSTALL: python -m pip install --progress-bar off --upgrade

steps:
- checkout
Expand All @@ -26,7 +25,7 @@ jobs:
name: Installing apt Packages
command: |
apt-get -y update
apt-get install -y --no-install-recommends python3-pip librsvg2-bin binutils
apt-get install -y --no-install-recommends python3-venv librsvg2-bin binutils pandoc
# temporary, until docutils > 0.19.0 is released (see doc/requirements.txt):
apt-get install -y --no-install-recommends subversion
Expand All @@ -37,6 +36,12 @@ jobs:
- v1-deps-{{ .Branch }}-
- v1-deps-

- run:
name: Set up venv
command: |
python3 -m venv .venv
echo "source .venv/bin/activate" >> $BASH_ENV
- run:
name: Installing nbsphinx
command: |
Expand Down

0 comments on commit 1cc1db0

Please sign in to comment.