Fix version selection button in docs (#1144)

* Fix version selection button in docs

* Try 6.0.0

* Require sphinx < 6

* Pin conda too
This commit is contained in:
Adam J. Stewart 2023-02-26 09:36:55 -07:00 коммит произвёл Caleb Robinson
Родитель 6b1c2cc9cc
Коммит ac8a9c0de0
4 изменённых файлов: 9 добавлений и 4 удалений

5
.github/dependabot.yml поставляемый
Просмотреть файл

@ -12,5 +12,8 @@ updates:
# setuptools releases new versions almost daily # setuptools releases new versions almost daily
- dependency-name: "setuptools" - dependency-name: "setuptools"
update-types: ["version-update:semver-patch"] update-types: ["version-update:semver-patch"]
# segmentation-models-pytorch requires older timm, can't update # Sphinx 6 is incompatible with pytorch-sphinx-theme
# https://github.com/pytorch/pytorch_sphinx_theme/issues/175
- dependency-name: "sphinx"
# segmentation-models-pytorch pins timm, must update in unison
- dependency-name: "timm" - dependency-name: "timm"

Просмотреть файл

@ -44,7 +44,7 @@ dependencies:
- scipy>=1.6.2 - scipy>=1.6.2
- segmentation-models-pytorch>=0.2 - segmentation-models-pytorch>=0.2
- setuptools>=42 - setuptools>=42
- sphinx>=4 - sphinx>=4,<6
- timm>=0.4.12 - timm>=0.4.12
- torchmetrics>=0.10 - torchmetrics>=0.10
- zipfile-deflate64>=0.2 - zipfile-deflate64>=0.2

Просмотреть файл

@ -1,4 +1,4 @@
# docs # docs
ipywidgets==8.0.4 ipywidgets==8.0.4
nbsphinx==0.8.12 nbsphinx==0.8.12
sphinx==6.1.3 sphinx==5.3.0

Просмотреть файл

@ -105,7 +105,9 @@ docs =
# release versions missing files, must install from master # release versions missing files, must install from master
pytorch-sphinx-theme pytorch-sphinx-theme
# sphinx 4+ required for autodoc_typehints_description_target = documented # sphinx 4+ required for autodoc_typehints_description_target = documented
sphinx>=4,<7 # sphinx 6+ is incompatible with pytorch-sphinx-theme
# https://github.com/pytorch/pytorch_sphinx_theme/issues/175
sphinx>=4,<6
style = style =
# black 21.8+ required for Jupyter support # black 21.8+ required for Jupyter support
black[jupyter]>=21.8,<24 black[jupyter]>=21.8,<24