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
# 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.
22
22
RUN uv pip uninstall --system google-cloud-bigquery-storage
23
23
24
-
# NOTE(herbison): uv fails to install this for some reason
25
-
RUN pip install git+https://github.com/Kaggle/learntools
24
+
# uv cannot install this in requirements.txt without --no-build-isolation
25
+
# to avoid affecting the larger build, we'll post-install it.
26
+
RUN uv pip install --no-build-isolation --system "git+https://github.com/Kaggle/learntools"
26
27
27
-
# We install an incompatible pair of libs (shapely<, libpysal==4.9.2) so we can't put this one in the requirements.txt
28
+
# b/328788268 We install an incompatible pair of libs (shapely<2, libpysal==4.9.2) so we can't put this one in the requirements.txt
0 commit comments