Where did my Cython extensions go? #3509
Answered
by
dionhaefner
dionhaefner
asked this question in
Q&A
-
Since setuptools 0.64.0, doing
It looks like the extensions are being built but just thrown away after that? My setup is here: https://github.com/team-ocean/veros |
Beta Was this translation helpful? Give feedback.
Answered by
dionhaefner
Aug 12, 2022
Replies: 1 comment
-
Aha, turns out this is caused by a combination of things:
Problem 1 is an easy fix (just replace the base class), but I don't understand 2... Edit: problem 2 was also present in older |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dionhaefner
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aha, turns out this is caused by a combination of things:
build_ext
command class that derives fromCython.Distutils.build_ext.build_ext
instead ofsetuptools.command.build_ext.build_ext
.ext.optional = True
) failing to build.Problem 1 is an easy fix (just replace the base class), but I don't understand 2...
Edit: problem 2 was also present in older
setuptools
. Raised as #3510.