Skip to content

Commit

Permalink
DOC: Fix sphinx version for sphinx-toolbox
Browse files Browse the repository at this point in the history
Currently the latest version of sphinx-toolbox does not support
Sphinx>=4.1, and for some reason, version resolving is not able to pick
up this restriction. We limit the version manually for now.
  • Loading branch information
eivindjahren committed Sep 16, 2021
1 parent 31d2924 commit ec94909
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ requires = [
'numpy==1.19.2; python_version == "3.8"',
'numpy>=1.19; python_version == "3.7"',
'numpy>=1.19; python_version >= "3.9"',
'Sphinx',
'Sphinx<4.0', # Due to sphinx-toolbox
'sphinx-rtd-theme',
'sphinx-toolbox',
'autoclasstoc',
Expand Down
2 changes: 1 addition & 1 deletion requirements/pyproject.toml.komodo
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = [
"ninja",
"setuptools_scm>=3.2.0",
'numpy>=1.13',
'Sphinx',
'Sphinx<4.0', # Due to sphinx-toolbox
'sphinx-rtd-theme',
'sphinxcontrib-apidoc',
'sphinx-autodoc-typehints',
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ coverage>=4.1
pytest-runner>=2.11.1
pre-commit
coverage>=4.1
Sphinx
Sphinx<4.0 # Due to sphinx-toolbox
sphinx-rtd-theme
sphinx-toolbox
autoclasstoc
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_dev_rms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pydocstyle
coverage>=4.1
pre-commit
coverage>=4.1
Sphinx
Sphinx<4.0 # Due to sphinx-toolbox
sphinx-rtd-theme
sphinx-toolbox
autoclasstoc
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ scikit-build
ninja
setuptools_scm
pydocstyle
Sphinx
Sphinx<4.0 # Due to sphinx-toolbox
sphinx-rtd-theme
sphinx-toolbox
autoclasstoc
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_setup_ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ninja>=1.8.2; python_version >= "3.7" and platform_system == "Linux"
ninja>=1.8.2.post2; platform_system != "Linux"
pytest>=2.9.2
pytest-runner>=2.11.1
Sphinx
Sphinx<4.0 # Due to sphinx-toolbox
sphinx-rtd-theme
sphinx-toolbox
autoclasstoc
Expand Down

0 comments on commit ec94909

Please sign in to comment.