Skip to content

Commit 003c7b5

Browse files
committed
CircleCI: update Sphinx command
1 parent 1fe9d26 commit 003c7b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ jobs:
3131
- run:
3232
name: make html
3333
command: |
34-
python setup.py build_sphinx
34+
python -m sphinx doc _build
3535
3636
# Save the outputs
3737
- store_artifacts:
38-
path: build/sphinx/html/
38+
path: _build
3939
destination: html
4040

4141
# Check for broken links
4242
- run:
4343
name: linkcheck
4444
command: |
45-
python setup.py build_sphinx -b linkcheck
45+
python -m sphinx doc _build -b linkcheck
4646
4747
workflows:
4848
version: 2

0 commit comments

Comments
 (0)