Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eaed04b

Browse filesBrowse files
authored
fix(project urls): update incorrect urls in setup.py to point at monorepo vs splitrepo (#17237)
Project/Homepage URLs that appear in PyPI are pointing at the old home for certain packages when they were split repos. This fix updates the setup.py files for multiple packages: ### HANDWRITTEN packages * packages/gapic-generator/setup.py * packages/google-auth/setup.py * packages/google-resumable-media/setup.py ### PROTO_ONLY_APIS packages > [!note] > If a package is `proto_only_apis`, Librarian bypasses `gapic-generator-python` entirely. Instead, it runs a raw `protoc` command directly to compile only the `_pb2.py` and `_pb2.pyi` files. Because the GAPIC generator is bypassed, the `setup.py.j2` template is never executed for them, and they need to be hand edited. * packages/google-cloud-access-context-manager/setup.py * packages/google-cloud-audit-log/setup.py Fixes bug #507858597
1 parent 7cced41 commit eaed04b
Copy full SHA for eaed04b

5 files changed

+5-5Lines changed: 5 additions & 5 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎packages/gapic-generator/setup.py‎

Copy file name to clipboardExpand all lines: packages/gapic-generator/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
name = "gapic-generator"
2323
description = "Google API Client Generator for Python"
24-
url = "https://github.com/googleapis/gapic-generator-python"
24+
url = "https://github.com/googleapis/google-cloud-python/tree/main/packages/gapic-generator"
2525
version = "1.33.0"
2626
release_status = "Development Status :: 5 - Production/Stable"
2727
dependencies = [
Collapse file

‎packages/google-auth/setup.py‎

Copy file name to clipboardExpand all lines: packages/google-auth/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
author_email="googleapis-packages@google.com",
106106
description="Google Authentication Library",
107107
long_description=long_description,
108-
url="https://github.com/googleapis/google-auth-library-python",
108+
url="https://github.com/googleapis/google-cloud-python/tree/main/packages/google-auth",
109109
packages=find_namespace_packages(
110110
exclude=("tests*", "system_tests*", "docs*", "samples*")
111111
),
Collapse file

‎packages/google-cloud-access-context-manager/setup.py‎

Copy file name to clipboardExpand all lines: packages/google-cloud-access-context-manager/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
author="Google LLC",
4949
author_email="googleapis-packages@google.com",
5050
license="Apache 2.0",
51-
url="https://github.com/googleapis/python-access-context-manager",
51+
url="https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-access-context-manager",
5252
classifiers=[
5353
release_status,
5454
"Intended Audience :: Developers",
Collapse file

‎packages/google-cloud-audit-log/setup.py‎

Copy file name to clipboardExpand all lines: packages/google-cloud-audit-log/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@
6060
license="Apache-2.0",
6161
packages=find_namespace_packages(exclude=("tests*", "testing*")),
6262
python_requires=">=3.9",
63-
url="https://github.com/googleapis/python-audit-log",
63+
url="https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-audit-log",
6464
include_package_data=True,
6565
)
Collapse file

‎packages/google-resumable-media/setup.py‎

Copy file name to clipboardExpand all lines: packages/google-resumable-media/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
author_email='googleapis-publisher@google.com',
4242
long_description=README,
4343
scripts=[],
44-
url='https://github.com/googleapis/google-resumable-media-python',
44+
url="https://github.com/googleapis/google-cloud-python/tree/main/packages/google-resumable-media",
4545
packages=setuptools.find_namespace_packages(
4646
exclude=("tests*", "docs*")
4747
),

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.