Skip to content

Commit 3b6cd47

Browse files
authored
chore(librarian): reduce diff in google-cloud-iam (#14718)
Towards googleapis/librarian#762
1 parent 80ab828 commit 3b6cd47

File tree

3 files changed

+3
-40
lines changed

3 files changed

+3
-40
lines changed

packages/google-cloud-iam/.OwlBot.yaml

Lines changed: 0 additions & 35 deletions
This file was deleted.

packages/google-cloud-iam/.coveragerc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ branch = True
44
[report]
55
show_missing = True
66
omit =
7-
google/cloud/iam_credentials/__init__.py
8-
google/cloud/iam_credentials/gapic_version.py
7+
google/cloud/iam/__init__.py
8+
google/cloud/iam/gapic_version.py
99
exclude_lines =
1010
# Re-enable the standard pragma
1111
pragma: NO COVER

packages/google-cloud-iam/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828

2929
version = None
3030

31-
with open(
32-
os.path.join(package_root, "google/cloud/iam_credentials/gapic_version.py")
33-
) as fp:
31+
with open(os.path.join(package_root, "google/cloud/iam/gapic_version.py")) as fp:
3432
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read())
3533
assert len(version_candidates) == 1
3634
version = version_candidates[0]

0 commit comments

Comments
 (0)