Skip to content

Commit 0d87ee4

Browse files
chore: new owl bot post processor docker image (#92)
gcr.io/repo-automation-bots/owlbot-python:latest@sha256:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479
1 parent 23c742c commit 0d87ee4

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image: gcr.io/repo-automation-bots/owlbot-python:latest
3-
digest: sha256:4c981a6b6f2b8914a448d7b3a01688365be03e3ed26dfee399a6aa77fb112eaa
3+
digest: sha256:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479

packages/google-cloud-dialogflow-cx/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(

packages/google-cloud-dialogflow-cx/owlbot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747

4848
# ignore docs warnings (only fail on errors)
4949
s.replace(
50-
"noxfile.py",
51-
"'-W', # warnings as errors",
52-
""
50+
'noxfile.py',
51+
'"-W", # warnings as errors',
52+
''
5353
)
5454

55-
s.shell.run(["nox", "-s", "blacken"], hide_output=False)
55+
s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 commit comments

Comments
 (0)