SourceForge logo
SourceForge logo
Menu

matplotlib-checkins

Revision: 3536
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3536&view=rev
Author: edin1
Date: 2007年07月16日 01:01:21 -0700 (2007年7月16日)
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.
Revision: 3543
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3543&view=rev
Author: astraw
Date: 2007年07月16日 11:06:54 -0700 (2007年7月16日)
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 (2007年8月01日)
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 (2007年8月01日)
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 (2007年8月21日)
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 (2007年11月01日)
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 (2007年11月12日)
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 (2007年11月28日)
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.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /