From: <jd...@us...> - 2009-01-30 16:19:27
|
Revision: 6858 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6858&view=rev Author: jdh2358 Date: 2009-01-30 16:19:24 +0000 (Fri, 30 Jan 2009) Log Message: ----------- remove pyexcelerator support - use xlwt instead Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/doc/api/api_changes.rst trunk/matplotlib/lib/mpl_toolkits/exceltools.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2009-01-30 16:11:25 UTC (rev 6857) +++ trunk/matplotlib/CHANGELOG 2009-01-30 16:19:24 UTC (rev 6858) @@ -1,3 +1,6 @@ +2009-01-30 Remove support for pyExcelerator in exceltools -- use xlwt + instead - JDH + 2009-01-29 Document 'resolution' kwarg for polar plots. Support it when using pyplot.polar, not just Figure.add_axes. - MGD Modified: trunk/matplotlib/doc/api/api_changes.rst =================================================================== --- trunk/matplotlib/doc/api/api_changes.rst 2009-01-30 16:11:25 UTC (rev 6857) +++ trunk/matplotlib/doc/api/api_changes.rst 2009-01-30 16:19:24 UTC (rev 6858) @@ -19,6 +19,8 @@ Changes for 0.98.x ================== +* Remove support for pyExcelerator in exceltools -- use xlwt + instead * Changed the defaults of acorr and xcorr to use usevlines=True, maxlags=10 and normed=True since these are the best defaults Modified: trunk/matplotlib/lib/mpl_toolkits/exceltools.py =================================================================== --- trunk/matplotlib/lib/mpl_toolkits/exceltools.py 2009-01-30 16:11:25 UTC (rev 6857) +++ trunk/matplotlib/lib/mpl_toolkits/exceltools.py 2009-01-30 16:19:24 UTC (rev 6858) @@ -22,13 +22,7 @@ import copy import numpy as np -try: - import xlwt as excel -except ImportError: - try: - import pyExcelerator as excel - except ImportError: - raise ImportError('You must install xlwt or pyExcelterator to use the exceltools') +import xlwt as excel import matplotlib.cbook as cbook import matplotlib.mlab as mlab This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |