Skip to content

Commit cad03d0

Browse files
authored
freeze versions to avoid build error (#388)
1 parent b2fd8b7 commit cad03d0

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

releases/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
breathe
99
git+https://github.com/fsfe/reuse-tool.git
1010
pre-commit
11-
Sphinx
11+
Sphinx==4.2.0
1212
# waiting for pypi release for fix for parallel read
1313
git+https://github.com/readthedocs/sphinx-notfound-page.git
1414
# Waiting for release of: https://github.com/executablebooks/sphinx-book-theme/commit/0bdacc0a5e0a01ca5b4476651d1a80821b9b5d67

scripts/oneapi.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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)'

0 commit comments

Comments
 (0)