kou commented on code in PR #3184:
URL: https://github.com/apache/arrow-adbc/pull/3184#discussion_r2220750522
##########
ci/scripts/python_sdist_test.sh:
##########
@@ -47,7 +47,11 @@ echo "=== Installing sdists ==="
for component in ${COMPONENTS}; do
pip install --no-deps --force-reinstall
${source_dir}/python/${component}/dist/*.tar.gz
done
-pip install importlib-resources pytest pyarrow pandas polars protobuf
+# N.B. for now, we still support manylinux2014 while PyArrow dropped support.
+# Explicitly install the last version of PyArrow supporting manylinux2014.
+# - https://github.com/apache/arrow-adbc/issues/3182
+# - https://github.com/apache/arrow/issues/46959
+pip install importlib-resources pytest pyarrow==19.0.1 pandas polars protobuf
Review Comment:
We can use 20.0.0:
```suggestion
pip install importlib-resources pytest pyarrow==20.0.0 pandas polars protobuf
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]