Skip to content

Commit e503d4a

Browse files
committed
fix: downgrade pyarrow to 20 to work around pyarrow compilation error
related: apache/arrow#47229
1 parent 1cf1d9e commit e503d4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ pycoingecko==3.2.0
2727
jinja2==3.1.6
2828
joblib==1.5.1
2929
rich==14.1.0
30-
pyarrow==21.0.0; platform_machine != 'armv7l'
30+
pyarrow==21.0.0; platform_machine != 'armv7l' and platform_machine != "aarch64"
31+
# TODO: downgrade for aarch64 until https://github.com/apache/arrow/issues/47229 is resolved
32+
pyarrow==20.0.0; platform_machine == "aarch64"
3133

3234
# Load ticker files 30% faster
3335
python-rapidjson==1.21

0 commit comments

Comments
 (0)