-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maint: Support protobuf Python library v5 #1422
Comments
Currently ArcticDB's conda packages are built for:
protobuf 5 has not yet been published on conda-forge. conda-forge/libprotobuf-feedstock#213 is the first PR to start this work. We might need to define a build variant for protobuf 3, 4, and 5 once this last version is supported. |
Related grpc/grpc#36142. |
Hi, any movement on this? Just curious if there's a timeline |
Likely addressable for conda-forge's builds once conda-forge/protobuf-feedstock#216 is completed. |
Implements #1422 for pip wheels. #### Checklist <details> <summary> Checklist for code changes... </summary> - [ ] Have you updated the relevant docstrings, documentation and copyright notice? - [ ] Is this contribution tested against [all ArcticDB's features](../docs/mkdocs/docs/technical/contributing.md)? - [ ] Do all exceptions introduced raise appropriate [error messages](https://docs.arcticdb.io/error_messages/)? - [ ] Are API changes highlighted in the PR description? - [ ] Is the PR labelled as enhancement or bug so it appears in autogenerated release notes? </details> <!-- Thanks for contributing a Pull Request to ArcticDB! Please ensure you have taken a look at: - ArcticDB's Code of Conduct: https://github.com/man-group/ArcticDB/blob/master/CODE_OF_CONDUCT.md - ArcticDB's Contribution Licensing: https://github.com/man-group/ArcticDB/blob/master/docs/mkdocs/docs/technical/contributing.md#contribution-licensing -->
Upgrade to protobuf 5 for pip wheel has been done in #1635. Waiting for conda-forge/protobuf-feedstock#216 for protobuf 5 upgrade of conda |
FYI conda-forge/protobuf-feedstock#215 can also be watched (it was started before the bot opened conda-forge/protobuf-feedstock#216). |
Protobuf 5 is being released on conda-forge thanks to conda-forge/protobuf-feedstock#215. |
ArcticDB can be build for |
Is your feature request related to a problem? Please describe.
Protobuf has released version 5 but we only support version 3 and 4. PR #1421 has constrained protobuf version for now.
We should relax this constraint that we are imposing on user's envs.
Our proto handling is quite complex - we compile Python proto stubs suitable for both proto 3 and proto 4 and choose which a user will "see" at runtime based on their installed proto version.
The solution should consider both wheels and Conda builds.
The text was updated successfully, but these errors were encountered: