-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate build issue involving cython and thriftpy in container build #218
Comments
So sorry for the noise---meant to post this against my own repo! 🤦♂️ This may or may not be a thriftpy issue. |
@danielballan i have the same issue. |
This is fixed by #220 . |
Thriftpy2 is released by cython precompiled, so users should not got the issue. Do you install thriftpy2 from source? |
Yes, I would have expected to get a wheel but evidently that's not what pip saw when this ran: https://github.com/bluesky/tiled/actions/runs/5598579624/job/15165018609#step:4:746 |
I mean "from souce" is from the git, not the Seems you have older version of pip / setuptools installed in the container, the older version of pip / setuptools do not use a isolated build environment. And this combination triggered cython to re-compile the .pyx to .c files. You can upgrade pip / setuptools to get a workaround, before thriftpy2 releases a new version. |
Ah, that makes sense, thank you. Upgrading to latest pip and setuptools in the container is probably wise in any case. |
Cython recently release 3.0.0. In the container build GHA, I have pinned cython to
<3
to work around the error below. Perhaps upstream will fix; we should try un-pinning soon.The text was updated successfully, but these errors were encountered: