We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44abd2 commit b0294d5Copy full SHA for b0294d5
.circleci/config.yml
@@ -2,16 +2,16 @@ version: 2
2
jobs:
3
build_docs:
4
docker:
5
- - image: circleci/python:3.7-stretch
+ - image: "cimg/python:3.10"
6
steps:
7
- checkout
8
- run:
9
name: Set BASH_ENV
10
command: |
11
- echo "set -e" >> $BASH_ENV;
12
- echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
+ echo 'set -e' >> $BASH_ENV;
+ echo 'export PATH=~/.local/bin:$PATH' >> $BASH_ENV;
13
sudo apt update
14
- 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
15
- restore_cache:
16
keys:
17
- pip-cache
0 commit comments