Commit eaed04b
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 #5078585971 parent 7cced41 commit eaed04bCopy full SHA for eaed04b
5 files changed
+5-5Lines changed: 5 additions & 5 deletions
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 number | Diff line number | Diff line change |
|---|---|---|
| ||
21 | 21 | |
22 | 22 | |
23 | 23 | |
24 | | - |
| 24 | + |
25 | 25 | |
26 | 26 | |
27 | 27 | |
|
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 number | Diff line number | Diff line change |
|---|---|---|
| ||
105 | 105 | |
106 | 106 | |
107 | 107 | |
108 | | - |
| 108 | + |
109 | 109 | |
110 | 110 | |
111 | 111 | |
|
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 number | Diff line number | Diff line change |
|---|---|---|
| ||
48 | 48 | |
49 | 49 | |
50 | 50 | |
51 | | - |
| 51 | + |
52 | 52 | |
53 | 53 | |
54 | 54 | |
|
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 number | Diff line number | Diff line change |
|---|---|---|
| ||
60 | 60 | |
61 | 61 | |
62 | 62 | |
63 | | - |
| 63 | + |
64 | 64 | |
65 | 65 | |
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 number | Diff line number | Diff line change |
|---|---|---|
| ||
41 | 41 | |
42 | 42 | |
43 | 43 | |
44 | | - |
| 44 | + |
45 | 45 | |
46 | 46 | |
47 | 47 | |
|
0 commit comments