diff --git a/packages/google-cloud-iam/.OwlBot.yaml b/packages/google-cloud-iam/.OwlBot.yaml deleted file mode 100644 index a82194368435..000000000000 --- a/packages/google-cloud-iam/.OwlBot.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -deep-remove-regex: - - /owl-bot-staging - -deep-copy-regex: - - source: /google/iam/admin/(v.*)/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - - source: /google/iam/credentials/(v.*)/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - - source: /google/iam/v3beta/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - - source: /google/iam/v3/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - - source: /google/iam/v2beta/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - - source: /google/iam/v2/.*-py - dest: /owl-bot-staging/google-cloud-iam/$1 - -begin-after-commit-hash: 130ce904e5d546c312943d10f48799590f9c0f66 - -api-name: google-cloud-iam diff --git a/packages/google-cloud-iam/.coveragerc b/packages/google-cloud-iam/.coveragerc index ab796a6509fb..7394bcc1c838 100644 --- a/packages/google-cloud-iam/.coveragerc +++ b/packages/google-cloud-iam/.coveragerc @@ -4,8 +4,8 @@ branch = True [report] show_missing = True omit = - google/cloud/iam_credentials/__init__.py - google/cloud/iam_credentials/gapic_version.py + google/cloud/iam/__init__.py + google/cloud/iam/gapic_version.py exclude_lines = # Re-enable the standard pragma pragma: NO COVER diff --git a/packages/google-cloud-iam/setup.py b/packages/google-cloud-iam/setup.py index 26cce32e8996..f2b7b72b0386 100644 --- a/packages/google-cloud-iam/setup.py +++ b/packages/google-cloud-iam/setup.py @@ -28,9 +28,7 @@ version = None -with open( - os.path.join(package_root, "google/cloud/iam_credentials/gapic_version.py") -) as fp: +with open(os.path.join(package_root, "google/cloud/iam/gapic_version.py")) as fp: version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read()) assert len(version_candidates) == 1 version = version_candidates[0]