jorisvandenbossche commented on issue #40375: URL: https://github.com/apache/arrow/issues/40375#issuecomment-1983562182
Googling a bit, I think you should be able to specify "constraints" to pip: ``` # constraints.txt cython<3.0.9 ``` ``` $ PIP_CONSTRAINT=constraints.txt pip install pyarrow ``` The other option is to disable the build-isolation, and ensure you have installed the build dependencies up front: ``` pip install cython<3.0.9 numpy setuptools_scm setuptools wheel pip install pyarrow --no-build-isolation ``` -- 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]
