Skip to content

Commit

Permalink
Fix: Limit grpcio version in flytekit-identity-aware-proxy due to reg…
Browse files Browse the repository at this point in the history
…ression (#2156)

* Limit grpcio version in flytekit-identity-aware-proxy due to regression

Signed-off-by: Fabio Grätz <[email protected]>

* Link issues in grpcio repo where limiting the grpcio version

Signed-off-by: Fabio Grätz <[email protected]>

---------

Signed-off-by: Fabio Grätz <[email protected]>
Co-authored-by: Fabio Grätz <[email protected]>
  • Loading branch information
fg91 and Fabio Grätz authored Feb 5, 2024
1 parent 0878397 commit 95fb8fa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion plugins/flytekit-identity-aware-proxy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@

microlib_name = f"flytekitplugins-{PLUGIN_NAME}"

plugin_requires = ["click", "google-cloud-secret-manager", "google-auth", "flytekit>=1.10"]
plugin_requires = [
"click",
"google-cloud-secret-manager",
"google-auth",
"flytekit>=1.10",
# https://github.com/grpc/grpc/issues/33935
# https://github.com/grpc/grpc/issues/35323
"grpcio<1.55.0",
]

__version__ = "0.0.0+develop"

Expand Down

0 comments on commit 95fb8fa

Please sign in to comment.