Skip to content

Commit b0294d5

Browse files
committed
Use Python 3.10 to build docs
1 parent c44abd2 commit b0294d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ version: 2
22
jobs:
33
build_docs:
44
docker:
5-
- image: circleci/python:3.7-stretch
5+
- image: "cimg/python:3.10"
66
steps:
77
- checkout
88
- run:
99
name: Set BASH_ENV
1010
command: |
11-
echo "set -e" >> $BASH_ENV;
12-
echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
11+
echo 'set -e' >> $BASH_ENV;
12+
echo 'export PATH=~/.local/bin:$PATH' >> $BASH_ENV;
1313
sudo apt update
14-
sudo apt install dvipng texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra texlive-generic-extra latexmk texlive-xetex
14+
sudo apt install dvipng texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra latexmk texlive-xetex
1515
- restore_cache:
1616
keys:
1717
- pip-cache

0 commit comments

Comments
 (0)