Skip to content

Commit b513215

Browse files
author
y-p
committed
Merge pull request #2860 from y-p/GH2439
BLD: bring back build_ext warning message cython is missing #2439
2 parents 7f02585 + 1289aa9 commit b513215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -552,14 +552,14 @@ def run(self):
552552

553553
if cython:
554554
suffix = '.pyx'
555-
cmdclass['build_ext'] = build_ext
555+
cmdclass['build_ext'] = CheckingBuildExt
556556
if BUILD_CACHE_DIR: # use the cache
557557
cmdclass['build_ext'] = CachingBuildExt
558558
cmdclass['cython'] = CythonCommand
559559
else:
560560
suffix = '.c'
561561
cmdclass['build_src'] = DummyBuildSrc
562-
cmdclass['build_ext'] = build_ext
562+
cmdclass['build_ext'] = CheckingBuildExt
563563

564564
lib_depends = ['reduce', 'inference', 'properties']
565565

0 commit comments

Comments
 (0)