Skip to content

Commit 15cd6d4

Browse files
committed
Update goldens
1 parent ef41a40 commit 15cd6d4

File tree

21 files changed

+95
-88
lines changed

21 files changed

+95
-88
lines changed

tests/integration/goldens/asset/noxfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
FORMAT_PATHS.append("samples")
4040

4141
ALL_PYTHON = [
42-
"3.7",
43-
"3.8",
4442
"3.9",
4543
"3.10",
4644
"3.11",

tests/integration/goldens/asset/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
4848
"proto-plus >= 1.22.3, <2.0.0",
4949
"proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'",
50-
"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",
50+
"protobuf >= 4.25.8, <5.0.0dev",
5151
"google-cloud-access-context-manager >= 0.1.2, <1.0.0",
5252
"google-cloud-os-config >= 1.0.0, <2.0.0",
5353
"grpc-google-iam-v1 >= 0.14.0, <1.0.0",
@@ -83,8 +83,6 @@
8383
"License :: OSI Approved :: Apache Software License",
8484
"Programming Language :: Python",
8585
"Programming Language :: Python :: 3",
86-
"Programming Language :: Python :: 3.7",
87-
"Programming Language :: Python :: 3.8",
8886
"Programming Language :: Python :: 3.9",
8987
"Programming Language :: Python :: 3.10",
9088
"Programming Language :: Python :: 3.11",
@@ -96,7 +94,7 @@
9694
],
9795
platforms="Posix; MacOS X; Windows",
9896
packages=packages,
99-
python_requires=">=3.7",
97+
python_requires=">=3.9",
10098
install_requires=dependencies,
10199
extras_require=extras,
102100
include_package_data=True,
Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# -*- coding: utf-8 -*-
2-
# This constraints file is required for unit tests.
2+
# This constraints file is used to check that lower bounds
3+
# are correct in setup.py
34
# List all library dependencies and extras in this file.
4-
google-api-core
5-
google-auth
6-
grpcio
7-
proto-plus
8-
protobuf
9-
google-cloud-access-context-manager
10-
google-cloud-os-config
11-
grpc-google-iam-v1
5+
# Pin the version to the lower bound.
6+
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
7+
# Then this file should have google-cloud-foo==1.14.0
8+
google-api-core==1.34.1
9+
google-auth==2.35.0
10+
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2453)
11+
# Add the minimum supported version of grpcio to constraints files
12+
proto-plus==1.22.3
13+
protobuf==4.25.8
14+
google-cloud-access-context-manager==0.1.2
15+
google-cloud-os-config==1.0.0
16+
grpc-google-iam-v1==0.14.0

tests/integration/goldens/credentials/noxfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
FORMAT_PATHS.append("samples")
4040

4141
ALL_PYTHON = [
42-
"3.7",
43-
"3.8",
4442
"3.9",
4543
"3.10",
4644
"3.11",

tests/integration/goldens/credentials/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
4848
"proto-plus >= 1.22.3, <2.0.0",
4949
"proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'",
50-
"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",
50+
"protobuf >= 4.25.8, <5.0.0dev",
5151
]
5252
extras = {
5353
}
@@ -80,8 +80,6 @@
8080
"License :: OSI Approved :: Apache Software License",
8181
"Programming Language :: Python",
8282
"Programming Language :: Python :: 3",
83-
"Programming Language :: Python :: 3.7",
84-
"Programming Language :: Python :: 3.8",
8583
"Programming Language :: Python :: 3.9",
8684
"Programming Language :: Python :: 3.10",
8785
"Programming Language :: Python :: 3.11",
@@ -93,7 +91,7 @@
9391
],
9492
platforms="Posix; MacOS X; Windows",
9593
packages=packages,
96-
python_requires=">=3.7",
94+
python_requires=">=3.9",
9795
install_requires=dependencies,
9896
extras_require=extras,
9997
include_package_data=True,
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# -*- coding: utf-8 -*-
2-
# This constraints file is required for unit tests.
2+
# This constraints file is used to check that lower bounds
3+
# are correct in setup.py
34
# List all library dependencies and extras in this file.
4-
google-api-core
5-
google-auth
6-
grpcio
7-
proto-plus
8-
protobuf
5+
# Pin the version to the lower bound.
6+
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
7+
# Then this file should have google-cloud-foo==1.14.0
8+
google-api-core==1.34.1
9+
google-auth==2.35.0
10+
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2453)
11+
# Add the minimum supported version of grpcio to constraints files
12+
proto-plus==1.22.3
13+
protobuf==4.25.8

tests/integration/goldens/eventarc/noxfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
FORMAT_PATHS.append("samples")
4040

4141
ALL_PYTHON = [
42-
"3.7",
43-
"3.8",
4442
"3.9",
4543
"3.10",
4644
"3.11",

tests/integration/goldens/eventarc/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
4848
"proto-plus >= 1.22.3, <2.0.0",
4949
"proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'",
50-
"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",
50+
"protobuf >= 4.25.8, <5.0.0dev",
5151
"grpc-google-iam-v1 >= 0.14.0, <1.0.0",
5252
]
5353
extras = {
@@ -81,8 +81,6 @@
8181
"License :: OSI Approved :: Apache Software License",
8282
"Programming Language :: Python",
8383
"Programming Language :: Python :: 3",
84-
"Programming Language :: Python :: 3.7",
85-
"Programming Language :: Python :: 3.8",
8684
"Programming Language :: Python :: 3.9",
8785
"Programming Language :: Python :: 3.10",
8886
"Programming Language :: Python :: 3.11",
@@ -94,7 +92,7 @@
9492
],
9593
platforms="Posix; MacOS X; Windows",
9694
packages=packages,
97-
python_requires=">=3.7",
95+
python_requires=">=3.9",
9896
install_requires=dependencies,
9997
extras_require=extras,
10098
include_package_data=True,
Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# -*- coding: utf-8 -*-
2-
# This constraints file is required for unit tests.
2+
# This constraints file is used to check that lower bounds
3+
# are correct in setup.py
34
# List all library dependencies and extras in this file.
4-
google-api-core
5-
google-auth
6-
grpcio
7-
proto-plus
8-
protobuf
9-
grpc-google-iam-v1
5+
# Pin the version to the lower bound.
6+
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
7+
# Then this file should have google-cloud-foo==1.14.0
8+
google-api-core==1.34.1
9+
google-auth==2.35.0
10+
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2453)
11+
# Add the minimum supported version of grpcio to constraints files
12+
proto-plus==1.22.3
13+
protobuf==4.25.8
14+
grpc-google-iam-v1==0.14.0

tests/integration/goldens/logging/noxfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
FORMAT_PATHS.append("samples")
4040

4141
ALL_PYTHON = [
42-
"3.7",
43-
"3.8",
4442
"3.9",
4543
"3.10",
4644
"3.11",

0 commit comments

Comments
 (0)