Skip to content

Commit a619a50

Browse files
committed
CircleCI: use "python -m sphinx"
1 parent f1d3f72 commit a619a50

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.circleci/config.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212

1313
environment:
1414
PIP_INSTALL: python -m pip install --progress-bar off --upgrade
15+
SPHINX: python -m sphinx -W --keep-going --color
1516

1617
steps:
1718
- checkout
@@ -65,27 +66,27 @@ jobs:
6566
- run:
6667
name: Building HTML
6768
command: |
68-
python3 setup.py build_sphinx -W -b html
69+
$SPHINX -d build/doctrees doc build/html -b html
6970
7071
- store_artifacts:
7172
name: Uploading HTML files
72-
path: build/sphinx/html
73+
path: build/html
7374
destination: html
7475

7576
- run:
7677
name: Building LaTeX
7778
command: |
78-
python3 setup.py build_sphinx -W -b latex
79+
$SPHINX -d build/doctrees doc build/latex -b latex
7980
8081
- run:
8182
name: Building PDF
8283
command: |
83-
cd build/sphinx/latex
84+
cd build/latex
8485
latexmk -pdflua
8586
8687
- store_artifacts:
8788
name: Uploading PDF file
88-
path: build/sphinx/latex/nbsphinx.pdf
89+
path: build/latex/nbsphinx.pdf
8990
destination: nbsphinx.pdf
9091

9192
workflows:

0 commit comments

Comments
 (0)