File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1111 - uses : actions/checkout@v2
1212 - uses : actions/setup-python@v2
1313 with :
14- python-verson : ' 3.9 '
14+ python-verson : ' 3.10 '
1515 - name : Install prerequisites
1616 run : |
1717 sudo apt-get update -qq
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ Changes since 1.0
100100 * Open Volume Kernel Library
101101 * Open Image Denoise
102102 * OSPRay
103-
103+
104104* oneMKL:
105105
106106 Introduces additional batched APIs for dense linear algebra. Sparse
Original file line number Diff line number Diff line change 88breathe
99git+https://github.com/fsfe/reuse-tool.git
1010pre-commit
11- Sphinx
11+ Sphinx == 4.2.0
1212# waiting for pypi release for fix for parallel read
1313git+https://github.com/readthedocs/sphinx-notfound-page.git
1414# Waiting for release of: https://github.com/executablebooks/sphinx-book-theme/commit/0bdacc0a5e0a01ca5b4476651d1a80821b9b5d67
Original file line number Diff line number Diff line change @@ -104,9 +104,11 @@ def sphinx(root, target):
104104 if not cl_args .verbose :
105105 os .environ ['LATEXMKOPTS' ] = '--silent'
106106 os .environ ['LATEXOPTS' ] = '-interaction=nonstopmode -halt-on-error'
107- sphinx_args = '-N -j auto '
107+ sphinx_args = '-N'
108108 if not cl_args .verbose :
109109 sphinx_args += ' -q'
110+ if not cl_args .serial :
111+ sphinx_args += ' -j auto'
110112 if cl_args .a :
111113 sphinx_args += ' -a'
112114 if cl_args .n :
@@ -299,6 +301,7 @@ def main():
299301 parser .add_argument ('--branch' )
300302 parser .add_argument ('--verbose' , action = 'store_true' )
301303 parser .add_argument ('--dry-run' , action = 'store_true' )
304+ parser .add_argument ('--serial' , action = 'store_true' )
302305 parser .add_argument ('-W' , action = 'store_true' )
303306 parser .add_argument (
304307 '-a' , action = 'store_true' , help = 'sphinx -a (build all files)'
You can’t perform that action at this time.
0 commit comments