Skip to content
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
6 changes: 4 additions & 2 deletions Dockerfile.tmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ if eq .Accelerator "gpu" }}
FROM us-docker.pkg.dev/colab-images/public/runtime:release-colab-external_20260226-060109_RC00
FROM us-docker.pkg.dev/colab-images/public/runtime:release-colab-external-images_20260416-060047_RC00
{{ else }}
FROM us-docker.pkg.dev/colab-images/public/cpu-runtime:release-colab-external_20260226-060109_RC00
FROM us-docker.pkg.dev/colab-images/public/cpu-runtime:release-colab-external-images_20260416-060047_RC00
{{ end}}

ADD kaggle_requirements.txt /kaggle_requirements.txt
Expand All @@ -28,6 +28,8 @@ RUN uv pip install --no-build-isolation --no-cache --system "git+https://github.
# b/468367647: Unpin protobuf, version greater than v5.29.5 causes issues with numerous packages
RUN uv pip install --system --force-reinstall --no-cache --no-deps torchtune
RUN uv pip install --system --force-reinstall --no-cache "protobuf==5.29.5"
# b/493600019: Colab base image ships numba/numba-cuda that do not support NumPy 2.4; upgrade both.
RUN uv pip install --system --force-reinstall --no-cache numba numba-cuda

# Adding non-package dependencies:
ADD clean-layer.sh /tmp/clean-layer.sh
Expand Down
2 changes: 0 additions & 2 deletions kaggle_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ ray
rgf-python
s3fs
scikit-learn
# Scikit-learn accelerated library for x86
scikit-learn-intelex>=2023.0.1
scikit-multilearn
scikit-optimize
scikit-plot
Expand Down
12 changes: 0 additions & 12 deletions tests/test_sklearnex.py

This file was deleted.

Loading