Skip to content

Commit c45f4fc

Browse files
docs(spanner): changes to support sphinx new release (#54)
* docs(spanner): changes to support sphinx new release * docs(spanner): variable fix in changelog file * docs(spanner): nit
1 parent c254bd2 commit c45f4fc

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ Return sessions from pool in LIFO order. ([#9454](https://github.com/googleapis/
106106

107107

108108
### Implementation Changes
109-
- Add backoff for `run_in_transaction' when backend does not provide 'RetryInfo' in response. ([#8461](https://github.com/googleapis/google-cloud-python/pull/8461))
109+
- Add backoff for `run_in_transaction` when backend does not provide 'RetryInfo' in response. ([#8461](https://github.com/googleapis/google-cloud-python/pull/8461))
110110
- Adjust gRPC timeouts (via synth). ([#8445](https://github.com/googleapis/google-cloud-python/pull/8445))
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
@@ -382,6 +382,6 @@ Return sessions from pool in LIFO order. ([#9454](https://github.com/googleapis/
382382
- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
383383
on `google-api-core` (#4221, #4280)
384384
- Deferring to `google-api-core` for `grpcio` and
385-
`googleapis-common-protos`dependencies (#4096, #4098)
385+
`googleapis-common-protos` dependencies (#4096, #4098)
386386

387387
PyPI: https://pypi.org/project/google-cloud-spanner/0.29.0/

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"sphinx.ext.napoleon",
3939
"sphinx.ext.todo",
4040
"sphinx.ext.viewcode",
41+
"recommonmark",
4142
]
4243

4344
# autodoc/autosummary flags

docs/gapic/v1/admin_database_types.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Spanner Admin Database Client Types
33

44
.. automodule:: google.cloud.spanner_admin_database_v1.types
55
:members:
6+
:noindex:

docs/gapic/v1/admin_instance_types.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Spanner Admin Instance Client Types
33

44
.. automodule:: google.cloud.spanner_admin_instance_v1.types
55
:members:
6+
:noindex:

docs/gapic/v1/types.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Spanner Client Types
33

44
.. automodule:: google.cloud.spanner_v1.types
55
:members:
6+
:noindex:

noxfile.py

Lines changed: 1 addition & 1 deletion
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==2.4.4", "alabaster", "recommonmark")
146+
session.install("sphinx", "alabaster", "recommonmark")
147147

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

0 commit comments

Comments
 (0)