From b64d991dd90e601c6644728bfb1d41003a6b35a8 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Tue, 28 Feb 2006 18:51:47 +0000 Subject: [PATCH] patch to keep Numeric as the default numerix package --- matplotlib-0.87-matplotlibrc.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 matplotlib-0.87-matplotlibrc.patch diff --git a/matplotlib-0.87-matplotlibrc.patch b/matplotlib-0.87-matplotlibrc.patch new file mode 100644 index 0000000..dba47ac --- /dev/null +++ b/matplotlib-0.87-matplotlibrc.patch @@ -0,0 +1,13 @@ +--- matplotlib-0.87/setup.py.orig 2006-02-14 11:11:32.000000000 -0700 ++++ matplotlib-0.87/setup.py 2006-02-27 15:19:28.000000000 -0700 +@@ -258,8 +258,8 @@ + + # packagers: set rc['numerix'] and rc['backend'] here to override the auto + # defaults, eg +-#rc['numerix'] = numpy +-#rc['backend'] = GTKAgg ++rc['numerix'] = 'Numeric' ++rc['backend'] = 'GTKAgg' + if sys.platform=='win32': + rc = dict(backend='TkAgg', numerix='Numeric') + template = file('matplotlibrc.template').read()