From: <ds...@us...> - 2007-11-12 15:37:06
|
Revision: 4222 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4222&view=rev Author: dsdale Date: 2007-11-12 07:36:08 -0800 (Mon, 12 Nov 2007) Log Message: ----------- collect config package code in one location in setup.py, so it can easily be commented out for the next release. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-11-12 15:23:23 UTC (rev 4221) +++ trunk/matplotlib/setup.py 2007-11-12 15:36:08 UTC (rev 4222) @@ -120,8 +120,7 @@ 'matplotlib.numerix.npyma', 'matplotlib.numerix.linear_algebra', 'matplotlib.numerix.random_array', - 'matplotlib.numerix.fft', - 'matplotlib.config' + 'matplotlib.numerix.fft' ] py_modules = ['pylab'] @@ -307,10 +306,9 @@ # TODO: comment out for mpl release: print_raw("") print_raw("EXPERIMENTAL CONFIG PACKAGE DEPENDENCIES") -if check_provide_configobj(): - py_modules.append('configobj') -if check_provide_traits(): - build_traits(ext_modules, packages) +packages.append('matplotlib.config') +if check_provide_configobj(): py_modules.append('configobj') +if check_provide_traits(): build_traits(ext_modules, packages) print_raw("") print_raw("[Edit setup.cfg to suppress the above messages]") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |