From e503d4a9c04828cc94ea3f9f3b186434749f76e2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 29 Aug 2025 20:31:06 +0200 Subject: [PATCH] fix: downgrade pyarrow to 20 to work around pyarrow compilation error related: https://github.com/apache/arrow/issues/47229 --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 955b08f48..301a2bacb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -27,7 +27,9 @@ pycoingecko==3.2.0 jinja2==3.1.6 joblib==1.5.1 rich==14.1.0 -pyarrow==21.0.0; platform_machine != 'armv7l' +pyarrow==21.0.0; platform_machine != 'armv7l' and platform_machine != "aarch64" +# TODO: downgrade for aarch64 until https://github.com/apache/arrow/issues/47229 is resolved +pyarrow==20.0.0; platform_machine == "aarch64" # Load ticker files 30% faster python-rapidjson==1.21