From 06ea402528b0cdd228a16ce77d2aafff44ede61e Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Wed, 20 Aug 2008 23:24:24 +0000 Subject: Run scons command in build_ext instead of build. setuptools develop run build_ext inplace, not build, so develop command in setuptools would not call the scons command. Now, the develop mode should work with numscons. --- numpy/distutils/command/build.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'numpy/distutils/command/build.py') diff --git a/numpy/distutils/command/build.py b/numpy/distutils/command/build.py index 2f5dc31ab..5d986570c 100644 --- a/numpy/distutils/command/build.py +++ b/numpy/distutils/command/build.py @@ -34,7 +34,4 @@ class build(old_build): 'scripts' + plat_specifier) def run(self): - # Make sure that scons based extensions are complete. - self.run_command('scons') - old_build.run(self) -- cgit v1.2.1