Skip to content

Commit 69ab819

Browse files
committed
Add missing hypothesis requirement to doc requirements.
1 parent cc3c67b commit 69ab819

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

setup.py

+19-12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
]
2020
PYTYPE = ["pytype==2023.9.27"] if IS_NOT_WINDOWS else []
2121

22+
HYPOTHESIS = ["hypothesis~=6.54.1"]
23+
2224
# Note: the versions of the test and doc requirements should be tightly pinned to known
2325
# working versions to make our CI/CD pipeline as stable as possible.
2426
TESTS_REQUIRE = (
@@ -36,7 +38,6 @@
3638
"flake8-debugger~=4.1.2",
3739
"flake8-docstrings~=1.6.0",
3840
"flake8-isort~=4.1.2",
39-
"hypothesis~=6.54.1",
4041
"ipykernel~=6.15.1",
4142
"jupyter~=1.0.0",
4243
# TODO: upgrade jupyter-client once
@@ -58,18 +59,24 @@
5859
+ PARALLEL_REQUIRE
5960
+ ATARI_REQUIRE
6061
+ PYTYPE
62+
+ HYPOTHESIS
63+
)
64+
DOCS_REQUIRE = (
65+
[
66+
"sphinx~=5.1.1",
67+
"sphinx-autodoc-typehints~=1.19.1",
68+
"sphinx-rtd-theme~=1.0.0",
69+
"sphinxcontrib-napoleon==0.7",
70+
"furo==2022.6.21",
71+
"sphinx-copybutton==0.5.0",
72+
"sphinx-github-changelog~=1.2.0",
73+
"myst-nb==0.17.2",
74+
"ipykernel~=6.15.2",
75+
]
76+
+ ATARI_REQUIRE
77+
+ PARALLEL_REQUIRE
78+
+ HYPOTHESIS
6179
)
62-
DOCS_REQUIRE = [
63-
"sphinx~=5.1.1",
64-
"sphinx-autodoc-typehints~=1.19.1",
65-
"sphinx-rtd-theme~=1.0.0",
66-
"sphinxcontrib-napoleon==0.7",
67-
"furo==2022.6.21",
68-
"sphinx-copybutton==0.5.0",
69-
"sphinx-github-changelog~=1.2.0",
70-
"myst-nb==0.17.2",
71-
"ipykernel~=6.15.2",
72-
] + ATARI_REQUIRE + PARALLEL_REQUIRE
7380

7481

7582
def get_readme() -> str:

0 commit comments

Comments
 (0)