|
From: <ef...@us...> - 2010-08-12 21:16:16
|
Revision: 8626
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8626&view=rev
Author: efiring
Date: 2010-08-12 21:16:10 +0000 (Thu, 12 Aug 2010)
Log Message:
-----------
Removed numerix after 17 months of deprecation warnings.
Modified Paths:
--------------
trunk/matplotlib/CHANGELOG
trunk/matplotlib/lib/matplotlib/rcsetup.py
trunk/matplotlib/setup.py
Removed Paths:
-------------
trunk/matplotlib/lib/matplotlib/numerix/
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG 2010-08-11 03:23:59 UTC (rev 8625)
+++ trunk/matplotlib/CHANGELOG 2010-08-12 21:16:10 UTC (rev 8626)
@@ -1,3 +1,6 @@
+2010-08-12 Removed all traces of numerix module after 17 months of
+ deprecation warnings. - EF
+
2010-08-05 Added keyword arguments 'thetaunits' and 'runits' for polar
plots. Fixed PolarAxes so that when it set default
Formatters, it marked them as such. Fixed semilogx and
Modified: trunk/matplotlib/lib/matplotlib/rcsetup.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/rcsetup.py 2010-08-11 03:23:59 UTC (rev 8625)
+++ trunk/matplotlib/lib/matplotlib/rcsetup.py 2010-08-12 21:16:10 UTC (rev 8626)
@@ -107,17 +107,6 @@
else: return _validate_standard_backends(s)
-def validate_numerix(v):
- # 2009/02/24: start warning; later, remove all traces
- try:
- if v == 'obsolete':
- return v
- except ValueError:
- pass
- warnings.warn('rcParams key "numerix" is obsolete and has no effect;\n'
- ' please delete it from your matplotlibrc file')
-
-
validate_toolbar = ValidateInStrings('toolbar',[
'None','classic','toolbar2',
], ignorecase=True)
@@ -347,8 +336,6 @@
defaultParams = {
'backend' : ['Agg', validate_backend], # agg is certainly present
'backend_fallback' : [True, validate_bool], # agg is certainly present
- #'numerix' : ['obsolete', validate_numerix],
- #'maskedarray' : ['obsolete', validate_maskedarray], #to be removed
'toolbar' : ['toolbar2', validate_toolbar],
'datapath' : [None, validate_path_exists], # handled by _get_data_path_cached
'units' : [False, validate_bool],
Modified: trunk/matplotlib/setup.py
===================================================================
--- trunk/matplotlib/setup.py 2010-08-11 03:23:59 UTC (rev 8625)
+++ trunk/matplotlib/setup.py 2010-08-12 21:16:10 UTC (rev 8626)
@@ -54,20 +54,12 @@
'matplotlib.testing',
'matplotlib.testing.jpl_units',
'matplotlib.tests',
-# 'matplotlib.toolkits',
'mpl_toolkits',
'mpl_toolkits.mplot3d',
'mpl_toolkits.axes_grid',
'mpl_toolkits.axes_grid1',
'mpl_toolkits.axisartist',
'matplotlib.sphinxext',
- # The following are deprecated and will be removed.
- 'matplotlib.numerix',
- 'matplotlib.numerix.mlab',
- 'matplotlib.numerix.ma',
- 'matplotlib.numerix.linear_algebra',
- 'matplotlib.numerix.random_array',
- 'matplotlib.numerix.fft',
'matplotlib.tri',
]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|