Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

freeze versions to avoid build error #388

Merged
merged 3 commits into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-verson: '3.9'
python-verson: '3.10'
- name: Install prerequisites
run: |
sudo apt-get update -qq
Expand Down
2 changes: 1 addition & 1 deletion releases/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Changes since 1.0
* Open Volume Kernel Library
* Open Image Denoise
* OSPRay

* oneMKL:

Introduces additional batched APIs for dense linear algebra. Sparse
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
breathe
git+https://github.com/fsfe/reuse-tool.git
pre-commit
Sphinx
Sphinx==4.2.0
# waiting for pypi release for fix for parallel read
git+https://github.com/readthedocs/sphinx-notfound-page.git
# Waiting for release of: https://github.com/executablebooks/sphinx-book-theme/commit/0bdacc0a5e0a01ca5b4476651d1a80821b9b5d67
Expand Down
5 changes: 4 additions & 1 deletion scripts/oneapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ def sphinx(root, target):
if not cl_args.verbose:
os.environ['LATEXMKOPTS'] = '--silent'
os.environ['LATEXOPTS'] = '-interaction=nonstopmode -halt-on-error'
sphinx_args = '-N -j auto'
sphinx_args = '-N'
if not cl_args.verbose:
sphinx_args += ' -q'
if not cl_args.serial:
sphinx_args += ' -j auto'
if cl_args.a:
sphinx_args += ' -a'
if cl_args.n:
Expand Down Expand Up @@ -299,6 +301,7 @@ def main():
parser.add_argument('--branch')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('--dry-run', action='store_true')
parser.add_argument('--serial', action='store_true')
parser.add_argument('-W', action='store_true')
parser.add_argument(
'-a', action='store_true', help='sphinx -a (build all files)'
Expand Down