Skip to content

Commit 4942687

Browse files
chore: new owl bot post processor docker image (#69)
gcr.io/repo-automation-bots/owlbot-python:latest@sha256:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479
1 parent 284c3f9 commit 4942687

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed
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:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479

packages/google-analytics-admin/.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

packages/google-analytics-admin/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(
@@ -201,7 +201,9 @@ def docfx(session):
201201
"""Build the docfx yaml files for this library."""
202202

203203
session.install("-e", ".")
204-
session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
204+
session.install(
205+
"sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml"
206+
)
205207

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

0 commit comments

Comments
 (0)