Skip to content

Commit

Permalink
fix: increase upper limit for protobuf 5.X versions (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Apr 26, 2024
1 parent 65b5725 commit 28fc17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version = "1.63.0"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"protobuf>=3.19.5,<5.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
"protobuf>=3.19.5,<6.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
]

extras_require = {"grpc": ["grpcio >= 1.44.0, <2.0.0.dev0"]}
Expand Down

2 comments on commit 28fc17a

@noam-better
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, this didn't seem to make it into the pypi package for 1.63.0 which still lists "<5.0.0.dev0" - can you rebuild the wheel and upload again please?

@Sovietaced
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am also hitting this while trying to update opentelemetry-python to support protobuf 5 @parthea

open-telemetry/opentelemetry-python#3931

Please sign in to comment.