You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UV requires a separate flag for allowing prerelease packages to be
installed.
kagglehub install fails due to this, since sigstore (a dependency) needs
a prerelease package.
let's install it separate to allow prerelease installs.
https://b.corp.google.com/issues/394382016
Copy file name to clipboardexpand all lines: Dockerfile.tmpl
+3
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,9 @@ ENV PATH="~/.local/bin:${PATH}"
28
28
# b/183041606#comment5: the Kaggle data proxy doesn't support these APIs. If the library is missing, it falls back to using a regular BigQuery query to fetch data.
29
29
RUN uv pip uninstall --system google-cloud-bigquery-storage
30
30
31
+
# b/394382016: sigstore (dependency of kagglehub) requires a prerelease packages, installing separate.
32
+
RUN uv pip install --system --force-reinstall --prerelease=allow kagglehub[pandas-datasets,hf-datasets]>=0.3.7
33
+
31
34
# uv cannot install this in requirements.txt without --no-build-isolation
32
35
# to avoid affecting the larger build, we'll post-install it.
33
36
RUN uv pip install --no-build-isolation --system "git+https://github.com/Kaggle/learntools"
0 commit comments