Skip to content
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

build: Explicit protobuf build version; consistent build/setup deps #4472

Merged
merged 1 commit into from
Sep 3, 2024

Conversation

cburroughs
Copy link
Contributor

Right now if one downloads feast-0.40.1-py2.py3-none-any.whl from PyPi it contains:

$ grep 'Protobuf Python Version' feast/protos/feast/registry/RegistryServer_pb2.py

Which is outside

$ grep 'protobuf<' feast-0.40.1.dist-info/METADATA
Requires-Dist: protobuf<5.0.0,>=4.24.0

Leading to runtime errors (#4437). This was mitigated by #4438. This change tightens this up further by:

  • Deleting the Makefile command that was trying to do this unsuccessfully.
  • Aligns the setup/build requirements
  • Sets the version of protobuf to match the minimum of the range. There is no guarantee that protos generated by 4.X will work with 4.(X-1).

Right now if one downloads `feast-0.40.1-py2.py3-none-any.whl` from
PyPi it contains:
```
$ grep 'Protobuf Python Version' feast/protos/feast/registry/RegistryServer_pb2.py
```
Which is outside
```
$ grep 'protobuf<' feast-0.40.1.dist-info/METADATA
Requires-Dist: protobuf<5.0.0,>=4.24.0
```
Leading to runtime errors (feast-dev#4437).  This was mitigated by feast-dev#4438.  This
change tightens this up further by:
 * Deleting the Makefile command that was trying to do this
 unsuccessfully.
 * Aligns the setup/build requirements
 * Sets the version of protobuf to match the *minimum* of the range.
 There is no guarantee that protos generated by `4.X` will work with `4.(X-1)`.

Signed-off-by: Chris Burroughs <chris.burroughs@gmail.com>
@cburroughs cburroughs changed the title build: explicit protobuf build version; consistent build/setup deps build: Explicit protobuf build version; consistent build/setup deps Aug 30, 2024
@tokoko tokoko merged commit 8fef194 into feast-dev:master Sep 3, 2024
23 of 24 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants