Skip to content

Commit eb09eed

Browse files
committed
minor rev bump
svn path=/trunk/matplotlib/; revision=4802
1 parent 2aa6683 commit eb09eed

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

API_CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.91.2 Released
2+
13
For csv2rec, checkrows=0 is the new default indicating all rows
24
will be checked for type inference
35

@@ -10,6 +12,7 @@
1012

1113
Removed, dead/experimental ExampleInfo, Namespace and Importer
1214
code from matplotlib/__init__.py
15+
1316
0.91.1 Released
1417

1518
0.91.0 Released

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
===============================================================
2+
2008-01-06 Released 0.91.2 at revision 4802
3+
14
2007-12-26 Reduce too-late use of matplotlib.use() to a warning
25
instead of an exception, for backwards compatibility - EF
36

setupext.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -902,9 +902,9 @@ def add_tk_flags(module):
902902
# First test for a MacOSX/darwin framework install
903903
from os.path import join, exists
904904
framework_dirs = [
905-
'/System/Library/Frameworks/',
905+
join(os.getenv('HOME'), '/Library/Frameworks'),
906906
'/Library/Frameworks',
907-
join(os.getenv('HOME'), '/Library/Frameworks')
907+
'/System/Library/Frameworks/',
908908
]
909909

910910
# Find the directory that contains the Tcl.framework and Tk.framework

0 commit comments

Comments
 (0)