Skip to content

Commit

Permalink
chore(python): Skip latest deltalake release on macos (pola-rs#16803)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored and Wouittone committed Jun 22, 2024
1 parent f5d0a64 commit c7c2a6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions py-polars/requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
# -------------------------------------------------------
--extra-index-url https://download.pytorch.org/whl/cpu
torch
jax
jaxlib
jax[cpu]
pyiceberg>=0.5.0
5 changes: 4 additions & 1 deletion py-polars/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ fastexcel>=0.9
openpyxl
xlsx2csv
XlsxWriter
deltalake>=0.15.0
# Skip deltalake version 0.18.0 due to MacOS issues:
# https://github.com/delta-io/delta-rs/issues/2577
deltalake>=0.15.0; platform_system != 'darwin'
deltalake>=0.15.0,!=0.18.0; platform_system == 'darwin'
# Csv
zstandard
# Plotting
Expand Down

0 comments on commit c7c2a6c

Please sign in to comment.