Skip to content

Commit 79e5c87

Browse files
committed
DOC: Remove '-j2' to fix docs build
Caused by: WARNING: the pydata_sphinx_theme extension is not safe for parallel writing
1 parent defe9de commit 79e5c87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
. venv/bin/activate
7575
cd doc
7676
# Don't use -q, show warning summary"
77-
SPHINXOPTS="-j2 -n" make -e html
77+
SPHINXOPTS="-n" make -e html
7878
if [[ $(find build/html -type f | wc -l) -lt 1000 ]]; then
7979
echo "doc build failed: build/html is empty"
8080
exit -1
@@ -85,7 +85,7 @@ jobs:
8585
command: |
8686
. venv/bin/activate
8787
cd doc/neps
88-
SPHINXOPTS="-j2 -n" make -e html || echo "ignoring errors for now"
88+
SPHINXOPTS="-n" make -e html || echo "ignoring errors for now"
8989
9090
- store_artifacts:
9191
path: doc/build/html/

0 commit comments

Comments
 (0)