Skip to content

Commit

Permalink
fix(ci): Fix CI error
Browse files Browse the repository at this point in the history
Resolves: flyteorg/flyte#4408
Signed-off-by: Chi-Sheng Liu <[email protected]>
  • Loading branch information
MortalHappiness committed Jun 16, 2024
1 parent e0f19be commit 2d5681d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ jobs:
uv pip install --system .
if [ -f dev-requirements.in ]; then uv pip install --system -r dev-requirements.in; fi
# TODO: move to protobuf>=5. Github issue: https://github.com/flyteorg/flyte/issues/5448
uv pip install --system -U $GITHUB_WORKSPACE "protobuf<5"
uv pip install --system -U "protobuf<5"
uv pip freeze
- name: Test with coverage
run: |
Expand Down
2 changes: 1 addition & 1 deletion plugins/flytekit-kf-mpi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

microlib_name = f"flytekitplugins-{PLUGIN_NAME}"

plugin_requires = ["flytekit>=1.6.1,<2.0.0"]
plugin_requires = ["flyteidl>1.12.2", "flytekit>=1.6.1"]

__version__ = "0.0.0+develop"

Expand Down
2 changes: 1 addition & 1 deletion plugins/flytekit-kf-pytorch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

microlib_name = f"flytekitplugins-{PLUGIN_NAME}"

plugin_requires = ["cloudpickle", "flyteidl>=1.5.1", "flytekit>=1.6.1"]
plugin_requires = ["cloudpickle", "flyteidl>1.12.2", "flytekit>=1.6.1"]

__version__ = "0.0.0+develop"

Expand Down
2 changes: 1 addition & 1 deletion plugins/flytekit-kf-tensorflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

microlib_name = f"flytekitplugins-{PLUGIN_NAME}"

plugin_requires = ["flyteidl>=1.10.0", "flytekit>=1.6.1"]
plugin_requires = ["flyteidl>1.12.2", "flytekit>=1.6.1"]

__version__ = "0.0.0+develop"

Expand Down

0 comments on commit 2d5681d

Please sign in to comment.