From: <jd...@us...> - 2008-09-18 13:26:08
|
Revision: 6109 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6109&view=rev Author: jdh2358 Date: 2008-09-18 20:26:06 +0000 (Thu, 18 Sep 2008) Log Message: ----------- fixed a pytz setup bug Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/setup.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-09-18 20:20:55 UTC (rev 6108) +++ trunk/matplotlib/CHANGELOG 2008-09-18 20:26:06 UTC (rev 6109) @@ -73,7 +73,7 @@ 2008-07-24 Rewrite of a significant portion of the clabel code (class ContourLabeler) to improve inlining. - DMK - + 2008-07-22 Added Barbs polygon collection (similar to Quiver) for plotting wind barbs. Added corresponding helpers to Axes and pyplot as well. (examples/pylab_examples/barb_demo.py shows it off.) - RMM @@ -163,7 +163,7 @@ 2008-06-24 Added "transparent" kwarg to savefig. - MGD -2008-06-24 Applied Stefan's patch to draw a sinle centered marker over +2008-06-24 Applied Stefan's patch to draw a single centered marker over a line with numpoints==1 - JDH 2008-06-23 Use splines to render circles in scatter plots - MGD Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2008-09-18 20:20:55 UTC (rev 6108) +++ trunk/matplotlib/setup.py 2008-09-18 20:26:06 UTC (rev 6109) @@ -166,7 +166,7 @@ def add_pytz(): packages = ['pytz'] resources = ['zone.tab', 'locales/pytz.pot'] - for dirpath, dirnames, filenames in os.walk(os.path.join('pytz', 'zoneinfo')): + for dirpath, dirnames, filenames in os.walk(os.path.join('lib', 'pytz', 'zoneinfo')): # remove the 'pytz' part of the path if '.svn' not in dirpath: basepath = dirpath.split(os.path.sep, 1)[1] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |