|
From: <jd...@us...> - 2008-09-18 13:33:21
|
Revision: 6111
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6111&view=rev
Author: jdh2358
Date: 2008-09-18 20:33:18 +0000 (Thu, 18 Sep 2008)
Log Message:
-----------
fixed last remaining known pytz setup bug
Modified Paths:
--------------
trunk/matplotlib/setup.py
Modified: trunk/matplotlib/setup.py
===================================================================
--- trunk/matplotlib/setup.py 2008-09-18 20:29:37 UTC (rev 6110)
+++ trunk/matplotlib/setup.py 2008-09-18 20:33:18 UTC (rev 6111)
@@ -164,7 +164,7 @@
# only install pytz and dateutil if the user hasn't got them
def add_pytz():
- packages = ['pytz']
+ packages.append('pytz')
resources = ['zone.tab', 'locales/pytz.pot']
for dirpath, dirnames, filenames in os.walk(os.path.join('lib', 'pytz', 'zoneinfo')):
# remove the 'pytz' part of the path
@@ -229,6 +229,8 @@
if options['verbose']:
mod.extra_compile_args.append('-DVERBOSE')
+print 'pymods', py_modules
+print 'packages', packages
distrib = setup(name="matplotlib",
version= __version__,
description = "Python plotting package",
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|