Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit 2e73f93

Browse files
authored
chore: use latest sphinx (#118)
1 parent eaa23c1 commit 2e73f93

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def docs(session):
183183
"""Build the docs for this library."""
184184

185185
session.install("-e", ".")
186-
session.install("sphinx<3.0.0", "alabaster", "recommonmark")
186+
session.install("sphinx", "alabaster", "recommonmark")
187187

188188
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
189189
session.run(

synth.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
python.py_samples(skip_readmes=True)
5454

5555
# Fix missing async client in datatransfer_v1
56+
# https://github.com/googleapis/gapic-generator-python/issues/815
5657
s.replace(
5758
"google/cloud/bigquery_datatransfer_v1/__init__.py",
5859
r"from \.services\.data_transfer_service import DataTransferServiceClient",
@@ -64,8 +65,4 @@
6465
'\\g<0>\n "DataTransferServiceAsyncClient"',
6566
)
6667

67-
68-
# TODO(busunkim): Use latest sphinx after microgenerator transition
69-
s.replace("noxfile.py", "'sphinx'", '"sphinx<3.0.0"')
70-
7168
s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 commit comments

Comments
 (0)