Skip to content

Commit

Permalink
Use Python 3.10 to build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Sep 28, 2022
1 parent c44abd2 commit b0294d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ version: 2
jobs:
build_docs:
docker:
- image: circleci/python:3.7-stretch
- image: "cimg/python:3.10"
steps:
- checkout
- run:
name: Set BASH_ENV
command: |
echo "set -e" >> $BASH_ENV;
echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
echo 'set -e' >> $BASH_ENV;
echo 'export PATH=~/.local/bin:$PATH' >> $BASH_ENV;
sudo apt update
sudo apt install dvipng texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra texlive-generic-extra latexmk texlive-xetex
sudo apt install dvipng texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra latexmk texlive-xetex
- restore_cache:
keys:
- pip-cache
Expand Down

0 comments on commit b0294d5

Please sign in to comment.