Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ba27e9

Browse files
committed
remove pyexcelerator support - use xlwt instead
svn path=/trunk/matplotlib/; revision=6858
1 parent 21ce57f commit 0ba27e9

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2009-01-30 Remove support for pyExcelerator in exceltools -- use xlwt
2+
instead - JDH
3+
14
2009-01-29 Document 'resolution' kwarg for polar plots. Support it
25
when using pyplot.polar, not just Figure.add_axes. - MGD
36

doc/api/api_changes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ list may help describe what changes may be necessary in your code.
1919

2020
Changes for 0.98.x
2121
==================
22+
* Remove support for pyExcelerator in exceltools -- use xlwt
23+
instead
2224

2325
* Changed the defaults of acorr and xcorr to use usevlines=True,
2426
maxlags=10 and normed=True since these are the best defaults

lib/mpl_toolkits/exceltools.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,7 @@
2222
import copy
2323
import numpy as np
2424

25-
try:
26-
import xlwt as excel
27-
except ImportError:
28-
try:
29-
import pyExcelerator as excel
30-
except ImportError:
31-
raise ImportError('You must install xlwt or pyExcelterator to use the exceltools')
25+
import xlwt as excel
3226

3327
import matplotlib.cbook as cbook
3428
import matplotlib.mlab as mlab

0 commit comments

Comments
 (0)