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

Use default builder to build imageSpec #1705

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading