Skip to content

Commit

Permalink
Fix Sphinx documentation building (#1563)
Browse files Browse the repository at this point in the history
* Fix broken documentation requirements

Signed-off-by: Willem Pienaar <git@willem.co>

* Prevent 4.0.0 of Sphinx from being used

Signed-off-by: Willem Pienaar <git@willem.co>
  • Loading branch information
woop committed May 19, 2021
1 parent 8cd0f4a commit 968fcbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions sdk/python/docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
grpcio-tools==1.31.0
mypy==0.790
mypy-protobuf==1.24
firebase-admin==4.5.2
google-cloud-datastore==2.1.0
-e "./sdk/python/[ci]"
4 changes: 2 additions & 2 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"pytest-timeout==1.4.2",
"pytest-ordering==0.6.*",
"pytest-mock==1.10.4",
"Sphinx",
"Sphinx!=4.0.0",
"sphinx-rtd-theme",
"tenacity",
"adlfs==0.5.9",
Expand Down Expand Up @@ -205,7 +205,7 @@ def run(self):
],
entry_points={"console_scripts": ["feast=feast.cli:cli"]},
use_scm_version={"root": "../..", "relative_to": __file__, "tag_regex": TAG_REGEX},
setup_requires=["setuptools_scm", "grpcio", "grpcio-tools==1.34.0", "mypy-protobuf", "sphinx"],
setup_requires=["setuptools_scm", "grpcio", "grpcio-tools==1.34.0", "mypy-protobuf", "sphinx!=4.0.0"],
package_data={
"": [
"protos/feast/**/*.proto",
Expand Down

0 comments on commit 968fcbd

Please sign in to comment.