Skip to content

Commit

Permalink
[python] Work around apparent AWS ABI clash with pyarrow on MacOS (#1938
Browse files Browse the repository at this point in the history
)
  • Loading branch information
johnkerl authored Dec 1, 2023
1 parent e52f094 commit 8616aa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apis/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ def run(self):
"pyarrow_hotfix",
# MacOS issue with import pyarrow before import tiledb at >= 13.0:
# https://github.com/single-cell-data/TileDB-SOMA/issues/1926#issuecomment-1834695149
"pyarrow>=9.0.0,<13.0.0",
"pyarrow>=9.0.0,<13.0.0; platform_system=='Darwin'",
"pyarrow>=9.0.0; platform_system!='Darwin'",
"scanpy>=1.9.2",
"scipy",
"somacore==1.0.4",
Expand Down

0 comments on commit 8616aa0

Please sign in to comment.