Skip to content

Commit

Permalink
fix(ingest): add lower bound on delta-lake
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Oct 16, 2024
1 parent d34717f commit e2d6623
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,8 @@
delta_lake = {
*s3_base,
*abs_base,
# Version 0.18.0 broken on ARM Macs: https://github.com/delta-io/delta-rs/issues/2577
"deltalake>=0.6.3, != 0.6.4, < 0.18.0; platform_system == 'Darwin' and platform_machine == 'arm64'",
"deltalake>=0.6.3, != 0.6.4; platform_system != 'Darwin' or platform_machine != 'arm64'",
# On deltalake 0.18.x, we were seeing some issues with multiprocessing shutdown.
"deltalake>=0.20.2",
}

powerbi_report_server = {"requests", "requests_ntlm"}
Expand Down

0 comments on commit e2d6623

Please sign in to comment.