From: <ed...@us...> - 2007-07-16 08:01:22
|
Revision: 3536 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3536&view=rev Author: edin1 Date: 2007-07-16 01:01:21 -0700 (Mon, 16 Jul 2007) Log Message: ----------- Cleaned up setup.py. Removed references to Python 2.2, distutils. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-07-16 07:47:32 UTC (rev 3535) +++ trunk/matplotlib/setup.py 2007-07-16 08:01:21 UTC (rev 3536) @@ -1,8 +1,4 @@ """ -Note! If you are building for python2.2, you must comment out the -py_modules line below and manually copy lib/pylab.py to -site-packages/pylab.py - You will need to have freetype, libpng and zlib installed to compile matplotlib, inlcuding the *-devel versions of these libraries if you are using a package manager like RPM or debian. @@ -62,8 +58,6 @@ import sys major, minor1, minor2, s, tmp = sys.version_info -if major==2 and minor1==2: - print >> sys.stderr, "***\n\nWARNING, see build info for python2.2 in the header of setup.py\n\n***" if major==2 and minor1<=3: # setuptools monkeypatches distutils.core.Distribution to support # package_data @@ -78,12 +72,13 @@ directory.""") import glob -from distutils.core import Extension, setup +#from distutils.core import Extension, setup +from setuptools import setup from setupext import build_agg, build_gtkagg, build_tkagg, build_wxagg,\ build_ft2font, build_image, build_windowing, build_transforms, \ build_contour, build_nxutils, build_enthought, build_swigagg, build_gdk, \ build_subprocess, build_ttconv -import distutils.sysconfig +#import distutils.sysconfig for line in file('lib/matplotlib/__init__.py').readlines(): if line[:11] == '__version__': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <as...@us...> - 2007-07-16 18:06:56
|
Revision: 3543 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3543&view=rev Author: astraw Date: 2007-07-16 11:06:54 -0700 (Mon, 16 Jul 2007) Log Message: ----------- don't require setuptools by default. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-07-16 17:59:17 UTC (rev 3542) +++ trunk/matplotlib/setup.py 2007-07-16 18:06:54 UTC (rev 3543) @@ -72,8 +72,7 @@ directory.""") import glob -#from distutils.core import Extension, setup -from setuptools import setup +from distutils.core import setup from setupext import build_agg, build_gtkagg, build_tkagg, build_wxagg,\ build_ft2font, build_image, build_windowing, build_transforms, \ build_contour, build_nxutils, build_enthought, build_swigagg, build_gdk, \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <md...@us...> - 2007-08-01 12:28:25
|
Revision: 3650 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3650&view=rev Author: mdboom Date: 2007-08-01 05:28:24 -0700 (Wed, 01 Aug 2007) Log Message: ----------- Display Python version information in status header Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-08-01 12:26:55 UTC (rev 3649) +++ trunk/matplotlib/setup.py 2007-08-01 12:28:24 UTC (rev 3650) @@ -116,6 +116,7 @@ print_line() print_raw("BUILDING MATPLOTLIB") print_status('matplotlib', '%s (r%s)' % (__version__, __revision__.split()[-2])) +print_status('python', sys.version) print_status('platform', sys.platform) if sys.platform == 'win32': print_status('Windows version', sys.getwindowsversion()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <md...@us...> - 2007-08-01 16:21:18
|
Revision: 3661 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3661&view=rev Author: mdboom Date: 2007-08-01 09:21:11 -0700 (Wed, 01 Aug 2007) Log Message: ----------- Only display the raw version (not the SVN revision, which only refers to one file and is basically wrong.) Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-08-01 15:56:34 UTC (rev 3660) +++ trunk/matplotlib/setup.py 2007-08-01 16:21:11 UTC (rev 3661) @@ -108,14 +108,12 @@ BUILD_NXUTILS = 1 for line in file('lib/matplotlib/__init__.py').readlines(): - if (line.startswith('__version__') or - line.startswith('__revision__') or - line.startswith('__date__')): + if (line.startswith('__version__')): exec(line.strip()) print_line() print_raw("BUILDING MATPLOTLIB") -print_status('matplotlib', '%s (r%s)' % (__version__, __revision__.split()[-2])) +print_status('matplotlib', __version__) print_status('python', sys.version) print_status('platform', sys.platform) if sys.platform == 'win32': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <md...@us...> - 2007-08-21 19:10:09
|
Revision: 3726 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3726&view=rev Author: mdboom Date: 2007-08-21 12:10:02 -0700 (Tue, 21 Aug 2007) Log Message: ----------- Fix message about wxAgg version requirement. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-08-21 19:08:55 UTC (rev 3725) +++ trunk/matplotlib/setup.py 2007-08-21 19:10:02 UTC (rev 3726) @@ -241,7 +241,7 @@ build_wxagg(ext_modules, packages) wxagg_backend_status = "yes" else: - print_message("WxAgg extension not required for wxPython < 2.8") + print_message("WxAgg extension not required for wxPython >= 2.8") rc['backend'] = 'WXAgg' # These are informational only. We don't build This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ds...@us...> - 2007-11-01 14:17:29
|
Revision: 4087 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4087&view=rev Author: dsdale Date: 2007-11-01 07:17:28 -0700 (Thu, 01 Nov 2007) Log Message: ----------- install fonts/otf to mpl-data Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-11-01 14:02:29 UTC (rev 4086) +++ trunk/matplotlib/setup.py 2007-11-01 14:17:28 UTC (rev 4087) @@ -126,6 +126,7 @@ 'mpl-data/fonts/pdfcorefonts/*.afm', 'mpl-data/fonts/pdfcorefonts/*.txt', 'mpl-data/fonts/ttf/*.ttf', + 'mpl-data/fonts/otf/*.otf', 'mpl-data/images/*.xpm', 'mpl-data/images/*.svg', 'mpl-data/images/*.png', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <md...@us...> - 2007-11-28 15:18:47
|
Revision: 4482 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4482&view=rev Author: mdboom Date: 2007-11-28 07:18:41 -0800 (Wed, 28 Nov 2007) Log Message: ----------- Remove fonts/otf directory in list of data files. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2007-11-28 13:42:39 UTC (rev 4481) +++ trunk/matplotlib/setup.py 2007-11-28 15:18:41 UTC (rev 4482) @@ -88,7 +88,6 @@ 'mpl-data/fonts/pdfcorefonts/*.afm', 'mpl-data/fonts/pdfcorefonts/*.txt', 'mpl-data/fonts/ttf/*.ttf', - 'mpl-data/fonts/otf/*.otf', 'mpl-data/images/*.xpm', 'mpl-data/images/*.svg', 'mpl-data/images/*.png', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |