We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 239a362 commit b976f5cCopy full SHA for b976f5c
1 file changed
setup.py
@@ -71,7 +71,7 @@ def extensions(**build_opts):
71
build_opts = {'depends': [], 'include_dirs': []}
72
exts = []
73
74
- for ext in CYTHON_EXTS:
+ for ext in cython_pyx(MODULEDIR):
75
cythonized = os.path.splitext(ext)[0] + '.c'
76
# use pre-generated modules for releases
77
if not GIT and os.path.exists(cythonized):
@@ -152,7 +152,6 @@ def run(self):
152
super().run()
153
154
155
-CYTHON_EXTS = list(cython_pyx(MODULEDIR))
156
157
setup(
158
ext_modules=extensions(),
0 commit comments