Skip to content

Commit acf0e4f

Browse files
authored
chore(librarian): sync post processing scripts (#14447)
Sync post processing scripts in [.librarian/generator-input](https://github.com/googleapis/google-cloud-python/tree/main/.librarian/generator-input) with [scripts/client-post-processing](https://github.com/googleapis/google-cloud-python/tree/main/scripts/client-post-processing).
1 parent daf5ab8 commit acf0e4f

File tree

3 files changed

+603
-153
lines changed

3 files changed

+603
-153
lines changed

.librarian/generator-input/client-post-processing/add-missing-dependencies-to-setup-py-constraints.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,43 @@ replacements:
161161
"google-cloud-org-policy >= 1.0.0, <2.0.0",
162162
"proto-plus >= 1.22.3, <2.0.0",
163163
count: 1
164+
- paths: [
165+
packages/google-shopping-merchant-notifications/setup.py
166+
]
167+
before: |
168+
dependencies = \[
169+
"google-api-core\[grpc\] >= 1.34.1, <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
170+
# Exclude incompatible versions of `google-auth`
171+
# See https://github.com/googleapis/google-cloud-python/issues/12364
172+
"google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0",
173+
"proto-plus >= 1.22.3, <2.0.0",
174+
"proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'",
175+
"protobuf>=3.20.2,<7.0.0,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
176+
\]
177+
after: |
178+
dependencies = [
179+
"google-api-core[grpc] >= 1.34.1, <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
180+
# Exclude incompatible versions of `google-auth`
181+
# See https://github.com/googleapis/google-cloud-python/issues/12364
182+
"google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0",
183+
"proto-plus >= 1.22.3, <2.0.0",
184+
"proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'",
185+
"protobuf>=3.20.2,<7.0.0,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
186+
"google-shopping-type >= 1.0.0, <2.0.0",
187+
]
188+
count: 1
189+
- paths: [
190+
packages/google-shopping-merchant-notifications/testing/constraints-3.7.txt
191+
]
192+
before: |
193+
google-api-core==1.34.1
194+
google-auth==2.14.1
195+
proto-plus==1.22.3
196+
protobuf==3.20.2
197+
after: |
198+
google-api-core==1.34.1
199+
google-auth==2.14.1
200+
proto-plus==1.22.3
201+
google-shopping-type==1.0.0
202+
protobuf==3.20.2
203+
count: 1

0 commit comments

Comments
 (0)