Skip to content

Commit c95b7a5

Browse files
authored
fix: allow Protobuf 6.x (#1369)
1 parent 4363179 commit c95b7a5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
release_status = "Development Status :: 5 - Production/Stable"
3737

3838
dependencies = [
39-
"grpcio >= 1.51.3, < 2.0dev", # https://github.com/googleapis/python-pubsub/issues/609
39+
"grpcio >= 1.51.3, < 2.0.0", # https://github.com/googleapis/python-pubsub/issues/609
4040
# google-api-core >= 1.34.0 is allowed in order to support google-api-core 1.x
41-
"google-auth >= 2.14.1, <3.0.0dev",
42-
"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.*",
43-
"proto-plus >= 1.22.0, <2.0.0dev",
44-
"proto-plus >= 1.22.2, <2.0.0dev; python_version>='3.11'",
45-
"proto-plus >= 1.25.0, < 2.0.0dev; python_version >= '3.13'",
46-
"protobuf>=3.20.2,<6.0.0dev,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
47-
"grpc-google-iam-v1 >= 0.12.4, < 1.0.0dev",
41+
"google-auth >= 2.14.1, <3.0.0",
42+
"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.*",
43+
"proto-plus >= 1.22.0, <2.0.0",
44+
"proto-plus >= 1.22.2, <2.0.0; python_version>='3.11'",
45+
"proto-plus >= 1.25.0, < 2.0.0; python_version >= '3.13'",
46+
"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",
47+
"grpc-google-iam-v1 >= 0.12.4, < 1.0.0",
4848
"grpcio-status >= 1.33.2",
4949
"opentelemetry-api <= 1.22.0; python_version<='3.7'",
5050
"opentelemetry-api >= 1.27.0; python_version>='3.8'",

0 commit comments

Comments
 (0)