Skip to content

Commit

Permalink
fix: Upgrade proto-plus to support Python 3.13
Browse files Browse the repository at this point in the history
This change should fix issue #1275
  • Loading branch information
dangarmol committed Nov 6, 2024
1 parent 5c78ac9 commit df8989a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@
# google-api-core >= 1.34.0 is allowed in order to support google-api-core 1.x
"google-auth >= 2.14.1, <3.0.0dev",
"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.*",
"proto-plus >= 1.22.0, <2.0.0dev",
"proto-plus >= 1.22.2, <2.0.0dev; python_version>='3.11'",
"proto-plus >= 1.22.0, < 2.0.0dev",
"proto-plus >= 1.22.2, < 2.0.0dev; python_version >= '3.11'",
"proto-plus >= 1.25.0, < 2.0.0dev; python_version >= '3.13'",
"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",
"grpc-google-iam-v1 >= 0.12.4, < 1.0.0dev",
"grpcio-status >= 1.33.2",
Expand Down

0 comments on commit df8989a

Please sign in to comment.