From d96411a7438cd90c7b1284665203643cd0bf06cf Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Sat, 29 Jun 2013 12:40:54 -0500 Subject: [PATCH] Fix build script --- skimage/filter/setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/skimage/filter/setup.py b/skimage/filter/setup.py index b1d070fc..c70730f0 100644 --- a/skimage/filter/setup.py +++ b/skimage/filter/setup.py @@ -21,7 +21,6 @@ def configuration(parent_package='', top_path=None): cython(['rank/_crank16.pyx'], working_path=base_path) cython(['rank/_crank16_percentiles.pyx'], working_path=base_path) cython(['rank/_crank16_bilateral.pyx'], working_path=base_path) - cython(['rank/rank.pyx'], working_path=base_path) cython(['rank/percentile_rank.pyx'], working_path=base_path) cython(['rank/bilateral_rank.pyx'], working_path=base_path) @@ -46,9 +45,6 @@ def configuration(parent_package='', top_path=None): config.add_extension( 'rank._crank16_bilateral', sources=['rank/_crank16_bilateral.c'], include_dirs=[get_numpy_include_dirs()]) - config.add_extension( - 'rank.rank', sources=['rank/rank.c'], - include_dirs=[get_numpy_include_dirs()]) config.add_extension( 'rank.percentile_rank', sources=['rank/percentile_rank.c'], include_dirs=[get_numpy_include_dirs()])