-
Notifications
You must be signed in to change notification settings - Fork 301
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
3006 - Added a version constraint for grpcio and grpcio-status #1248
Merged
eapolinario
merged 2 commits into
flyteorg:master
from
dennisobrien:dennisobrien.3006.add_version_constraint_for_grpcio
Oct 20, 2022
Merged
3006 - Added a version constraint for grpcio and grpcio-status #1248
eapolinario
merged 2 commits into
flyteorg:master
from
dennisobrien:dennisobrien.3006.add_version_constraint_for_grpcio
Oct 20, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dennisobrien
requested review from
wild-endeavor,
kumare3,
eapolinario and
pingsutw
as code owners
October 20, 2022 06:19
Codecov Report
@@ Coverage Diff @@
## master #1248 +/- ##
========================================
Coverage 68.68% 68.68%
========================================
Files 288 288
Lines 26333 26333
Branches 2942 2486 -456
========================================
Hits 18087 18087
Misses 7768 7768
Partials 478 478 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Can you run |
…er to prevent an incompatible verison of protobuf. Signed-off-by: Dennis O'Brien <[email protected]>
….txt Signed-off-by: Dennis O'Brien <[email protected]>
dennisobrien
force-pushed
the
dennisobrien.3006.add_version_constraint_for_grpcio
branch
from
October 20, 2022 07:08
9af3255
to
6633303
Compare
eapolinario
approved these changes
Oct 20, 2022
8 tasks
8 tasks
VPraharsha03
pushed a commit
to VPraharsha03/flytekit
that referenced
this pull request
Oct 23, 2022
…org#1248) * 3006 - Added a version constraint for grpcio and grpcio-status in order to prevent an incompatible verison of protobuf. Signed-off-by: Dennis O'Brien <[email protected]> * Generated requirements-spark2.txt by running make requirements-spark2.txt Signed-off-by: Dennis O'Brien <[email protected]> Signed-off-by: Dennis O'Brien <[email protected]> Signed-off-by: Vivek Praharsha <[email protected]>
@dennisobrien, please fill in this form to claim your swag. |
VPraharsha03
pushed a commit
to VPraharsha03/flytekit
that referenced
this pull request
Oct 29, 2022
…org#1248) * 3006 - Added a version constraint for grpcio and grpcio-status in order to prevent an incompatible verison of protobuf. Signed-off-by: Dennis O'Brien <[email protected]> * Generated requirements-spark2.txt by running make requirements-spark2.txt Signed-off-by: Dennis O'Brien <[email protected]> Signed-off-by: Dennis O'Brien <[email protected]>
kiliangojek
pushed a commit
to kiliangojek/flytekit
that referenced
this pull request
Nov 15, 2022
…org#1248) * 3006 - Added a version constraint for grpcio and grpcio-status in order to prevent an incompatible verison of protobuf. Signed-off-by: Dennis O'Brien <[email protected]> * Generated requirements-spark2.txt by running make requirements-spark2.txt Signed-off-by: Dennis O'Brien <[email protected]> Signed-off-by: Dennis O'Brien <[email protected]> Signed-off-by: Kilian <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TL;DR
Added a version constraint for
grpcio
andgrpcio-status
in order to prevent an incompatible verison ofprotobuf
.The latest version of
grpcio
(1.50.0) requires a version ofprotobuf
>= 4.0 that is not compatible with this project. This causes a failure when runningmake dev-requirements.txt
. To fix this, we add a version constraint ongrpcio
andgrpcio-status
.Type
Are all requirements met?
Complete description
This was fixed by adding version constraints for
grpcio
andgrpcio-status
inrequirements.in
.This was originally discussed in this slack thread.
This may be a temporary solution as there was mention of updating the protobuf dependency.
Tracking Issue
flyteorg/flyte#3006