Skip to content

Commit

Permalink
Use default builder to build imageSpec (#1705)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Jul 4, 2024
1 parent be6659d commit 339dde9
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
uv venv
source .venv/bin/activate
if [ -f requirements.in ]; then uv pip install -r requirements.in; fi
uv pip install "flytekit>=1.12.2" flytekitplugins-envd "numpy<2.0.0"
uv pip install "flytekit>=1.12.2" "numpy<2.0.0"
pip freeze
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
pip install uv
uv venv
source .venv/bin/activate
uv pip install "flytekit>=1.12.2" flytekitplugins-deck-standard flytekitplugins-envd torch tabulate
uv pip install "flytekit>=1.12.2" flytekitplugins-deck-standard torch tabulate
pip freeze
- name: Checkout flytesnacks
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion examples/basics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV VENV /opt/venv
RUN python3 -m venv ${VENV}
ENV PATH="${VENV}/bin:$PATH"

RUN pip install flytekit flytekitplugins-envd
RUN pip install flytekit

# Copy the actual code
COPY . /root
Expand Down
1 change: 0 additions & 1 deletion examples/development_lifecycle/requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
flytekit
flytekitplugins-deck-standard
flytekitplugins-envd
plotly
scikit-learn
tabulate
1 change: 0 additions & 1 deletion examples/k8s_dask_plugin/requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
flytekitplugins-dask
flytekitplugins-envd
1 change: 0 additions & 1 deletion examples/snowflake_agent/requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
flytekitplugins-snowflake==1.7.0
flytekitplugins-envd==1.7.0
flytekit==1.7.1b1
marshmallow_enum
1 change: 0 additions & 1 deletion examples/snowflake_plugin/requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
flytekitplugins-snowflake==1.7.0
flytekit==1.7.1b1
flytekitplugins-envd==1.7.0
marshmallow_enum

0 comments on commit 339dde9

Please sign in to comment.