Skip to content

Commit 91c3419

Browse files
chore: new owl bot post processor docker image (googleapis#476)
Post-Processor: gcr.io/repo-automation-bots/owlbot-python:latest@sha256:9d6a2d613e2c04c07ecdb6c287e3931890f6d30266ab5ee4ee412f748dc98341
1 parent 6d4edd2 commit 91c3419

5 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/.OwlBot.lock.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
docker:
2-
digest: sha256:457583330eec64daa02aeb7a72a04d33e7be2428f646671ce4045dcbc0191b1e
3-
image: gcr.io/repo-automation-bots/owlbot-python:latest
4-
2+
image: gcr.io/repo-automation-bots/owlbot-python:latest
3+
digest: sha256:9d6a2d613e2c04c07ecdb6c287e3931890f6d30266ab5ee4ee412f748dc98341

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ repos:
2626
hooks:
2727
- id: black
2828
- repo: https://gitlab.com/pycqa/flake8
29-
rev: 3.9.1
29+
rev: 3.9.2
3030
hooks:
3131
- id: flake8

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@
363363
"google.api_core": ("https://googleapis.dev/python/google-api-core/latest/", None,),
364364
"grpc": ("https://grpc.github.io/grpc/python/", None),
365365
"proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None),
366+
"protobuf": ("https://googleapis.dev/python/protobuf/latest/", None),
366367
}
367368

368369

docs/multiprocessing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. note::
22

3-
Because this client uses :mod:`grpcio` library, it is safe to
3+
Because this client uses :mod:`grpc` library, it is safe to
44
share instances across threads. In multiprocessing scenarios, the best
55
practice is to create client instances *after* the invocation of
6-
:func:`os.fork` by :class:`multiprocessing.Pool` or
6+
:func:`os.fork` by :class:`multiprocessing.pool.Pool` or
77
:class:`multiprocessing.Process`.

noxfile.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def docs(session):
179179
"""Build the docs for this library."""
180180

181181
session.install("-e", ".")
182-
session.install("sphinx", "alabaster", "recommonmark")
182+
session.install("sphinx==4.0.1", "alabaster", "recommonmark")
183183

184184
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
185185
session.run(
@@ -200,7 +200,9 @@ def docfx(session):
200200
"""Build the docfx yaml files for this library."""
201201

202202
session.install("-e", ".")
203-
session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
203+
session.install(
204+
"sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml"
205+
)
204206

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

0 commit comments

Comments
 (0)