You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pip install httptools==0.6.4 fails under pypy3.11 with the log output below.
The issue is the Cython generated C files bundled with the release in pypi, similar to this one for lxml. In fact installing directly from the 0.6.4 commit works fine: pip install git+https://github.com/MagicStack/httptools@e265ae0.
The suggested fix there is to build a release with the 3.1 release of Cython which has this fix: cython/cython#6482
how to reproduce
if you have docker, this is probably the easiest way to reproduce:
docker run -it --entrypoint=/bin/bash pypy:3.11-7.3.19 -c 'pip install httptools==0.6.4'
pip install httptools==0.6.4
fails under pypy3.11 with the log output below.The issue is the Cython generated C files bundled with the release in pypi, similar to this one for lxml. In fact installing directly from the 0.6.4 commit works fine:
pip install git+https://github.com/MagicStack/httptools@e265ae0
.The suggested fix there is to build a release with the 3.1 release of Cython which has this fix: cython/cython#6482
how to reproduce
if you have docker, this is probably the easiest way to reproduce:
docker run -it --entrypoint=/bin/bash pypy:3.11-7.3.19 -c 'pip install httptools==0.6.4'
logs from unsuccessful install
The text was updated successfully, but these errors were encountered: