Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ formats:
- pdf

python:
version: 3.7
version: "3.8"
install:
- requirements: sdk/python/docs/requirements.txt
2 changes: 1 addition & 1 deletion sdk/python/docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-e ".[ci]"
-e ".[docs]"
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@
+ HBASE_REQUIRED
)


# rtd builds fail because of mysql not being installed in their environment.
# We can add mysql there, but it's not strictly needed. This will be faster for builds.
DOCS_REQUIRED = CI_REQUIRED
for _r in MYSQL_REQUIRED:
DOCS_REQUIRED.remove(_r)

DEV_REQUIRED = ["mypy-protobuf==3.1", "grpcio-testing==1.*"] + CI_REQUIRED

# Get git repo root directory
Expand Down Expand Up @@ -480,6 +487,7 @@ def copy_extensions_to_source(self):
"ge": GE_REQUIRED,
"hbase": HBASE_REQUIRED,
"go": GO_REQUIRED,
"docs": DOCS_REQUIRED,
},
include_package_data=True,
license="Apache",
Expand Down