Skip to content

Commit 9fe6f88

Browse files
committed
limiting sphinx-rtd-theme because apparently, it's a problem. Also, forgot types-PyYAML in the mypy setup
1 parent 25f1f47 commit 9fe6f88

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def mypy(session: Session) -> None:
147147
"""
148148
args = session.posargs or ["drevalpy", "tests", "docs/conf.py"]
149149
session.install(".")
150-
session.install("mypy", "pytest", "types-requests", "types-attrs")
150+
session.install("mypy", "pytest", "types-requests", "types-attrs", "types-PyYAML")
151151
session.run("mypy", *args)
152152

153153

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ importlib-resources = "*"
2929
sphinx-autodoc-typehints = "<3.0"
3030
sphinx = ">=4.0.2"
3131
sphinx-autobuild = ">=2021.3.14"
32-
sphinx-rtd-theme = ">=1.0.0"
32+
sphinx-rtd-theme = ">=1.0.0,<3.0.2"
3333
sphinx-click = ">=3.0.0"
3434
pytest = "*"
3535
nox = "*"

0 commit comments

Comments
 (0)