Skip to content

Commit 4d54a5c

Browse files
authoredApr 29, 2020
docs: re-pin sphinx version (#70)
Reopens #50 Unfortunately, synthtool has pinned to sphinx<3.0.0 which means any code regen via synth will cause docs to fail. Until it is updated to support it, we also need to pin to sphinx<3.0.0.
1 parent 5d8935d commit 4d54a5c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed
 

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Return sessions from pool in LIFO order. ([#9454](https://github.com/googleapis/
111111
- Allow kwargs to be passed to create_channel (via synth). ([#8403](https://github.com/googleapis/google-cloud-python/pull/8403))
112112

113113
### New Features
114-
- Add 'options_' argument to clients 'get_iam_policy'; pin black version (via synth). ([#8659](https://github.com/googleapis/google-cloud-python/pull/8659))
114+
- Add 'options\_' argument to clients' 'get_iam_policy'; pin black version (via synth). ([#8659](https://github.com/googleapis/google-cloud-python/pull/8659))
115115
- Add 'client_options' support, update list method docstrings (via synth). ([#8522](https://github.com/googleapis/google-cloud-python/pull/8522))
116116

117117
### Dependencies

‎docs/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"sphinx.ext.napoleon",
3939
"sphinx.ext.todo",
4040
"sphinx.ext.viewcode",
41-
"recommonmark",
4241
]
4342

4443
# autodoc/autosummary flags

‎noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def docs(session):
143143
"""Build the docs for this library."""
144144

145145
session.install("-e", ".")
146-
session.install("sphinx", "alabaster", "recommonmark")
146+
session.install("sphinx<3.0.0", "alabaster", "recommonmark")
147147

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

0 commit comments

Comments
 (0)
Please sign in to comment.