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.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to