Skip to content

Commit 17668b7

Browse files
partheagkevinzheng
authored andcommitted
fix: allow Protobuf 6.x (#1028)
1 parent f71aba8 commit 17668b7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
version = version["__version__"]
3131
release_status = "Development Status :: 5 - Production/Stable"
3232
dependencies = [
33-
"google-api-core[grpc] >= 1.34.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
33+
"google-api-core[grpc] >= 1.34.0, <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.*",
3434
# Exclude incompatible versions of `google-auth`
3535
# See https://github.com/googleapis/google-cloud-python/issues/12364
36-
"google-auth >= 2.14.1, <3.0.0dev,!=2.24.0,!=2.25.0",
37-
"google-cloud-core >= 1.4.1, <3.0.0dev",
38-
"proto-plus >= 1.22.0, <2.0.0dev",
39-
"proto-plus >= 1.22.2, <2.0.0dev; python_version>='3.11'",
40-
"proto-plus >= 1.25.0, <2.0.0dev; python_version>='3.13'",
41-
"protobuf>=3.20.2,<6.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
36+
"google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0",
37+
"google-cloud-core >= 1.4.1, <3.0.0",
38+
"proto-plus >= 1.22.0, <2.0.0",
39+
"proto-plus >= 1.22.2, <2.0.0; python_version>='3.11'",
40+
"proto-plus >= 1.25.0, <2.0.0; python_version>='3.13'",
41+
"protobuf>=3.20.2,<7.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
4242
]
4343
extras = {}
4444

0 commit comments

Comments
 (0)