From afa32227cb6a48769327d786c6ac4057e9cb286f Mon Sep 17 00:00:00 2001 From: John Kerl Date: Fri, 1 Dec 2023 09:54:14 -0500 Subject: [PATCH] [python] Work around apparent AWS ABI clash with pyarrow on MacOS --- apis/python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apis/python/setup.py b/apis/python/setup.py index 6caded657f..0638db5f51 100644 --- a/apis/python/setup.py +++ b/apis/python/setup.py @@ -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",