Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

"""This script is used to synthesize generated parts of this library."""

import re

import synthtool as s
from synthtool import gcp
from synthtool.languages import python
Expand All @@ -34,15 +32,17 @@
# See: https://github.com/googleapis/python-storage/issues/226
"google-cloud-kms < 2.0dev",
],
intersphinx_dependencies = {
intersphinx_dependencies={
"requests": "https://docs.python-requests.org/en/master/"
},
)

s.move(
templated_files, excludes=[
templated_files,
excludes=[
"docs/multiprocessing.rst",
"noxfile.py",
"renovate.json", # do not bundle reports
"CONTRIBUTING.rst",
],
)
Expand Down
1 change: 0 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": [
"config:base",
"group:all",
":preserveSemverRanges",
":disableDependencyDashboard"
],
Expand Down
4 changes: 2 additions & 2 deletions tests/system/test_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def test_new_bucket_w_ubla(
bucket_acl.reload()

bucket_acl.loaded = True # Fake that we somehow loaded the ACL
bucket_acl.all().grant_read()
bucket_acl.group("cloud-developer-relations@google.com").grant_read()
with pytest.raises(exceptions.BadRequest):
bucket_acl.save()

Expand All @@ -724,7 +724,7 @@ def test_new_bucket_w_ubla(
blob_acl.reload()

blob_acl.loaded = True # Fake that we somehow loaded the ACL
blob_acl.all().grant_read()
blob_acl.group("cloud-developer-relations@google.com").grant_read()
with pytest.raises(exceptions.BadRequest):
blob_acl.save()

Expand Down