pitrou commented on PR #44804: URL: https://github.com/apache/arrow/pull/44804#issuecomment-2552405356
Ok, we're making progress. The various PyArrow modules import successfully: https://github.com/ursacomputing/crossbow/actions/runs/12400784841/job/34618729478#step:11:680 ``` C:\>py -3.13t -c "import pyarrow" || exit /B 1 C:\>py -3.13t -c "import pyarrow._gcsfs" || exit /B 1 C:\>py -3.13t -c "import pyarrow._hdfs" || exit /B 1 C:\>py -3.13t -c "import pyarrow._s3fs" || exit /B 1 C:\>py -3.13t -c "import pyarrow.csv" || exit /B 1 C:\>py -3.13t -c "import pyarrow.dataset" || exit /B 1 C:\>py -3.13t -c "import pyarrow.flight" || exit /B 1 C:\>py -3.13t -c "import pyarrow.fs" || exit /B 1 C:\>py -3.13t -c "import pyarrow.json" || exit /B 1 C:\>py -3.13t -c "import pyarrow.orc" || exit /B 1 C:\>py -3.13t -c "import pyarrow.parquet" || exit /B 1 C:\>py -3.13t -c "import pyarrow.substrait" || exit /B 1 ``` However, there is a crash when importing `test_cffi`. I think what happens is that `cffi` was compiled from source, perhaps with the wrong compiler options (because of the aforementioned setuptools bug?). We can try uninstalling cffi before running the tests. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org