Skip to content

Commit 8f5b981

Browse files
committed
some release bugs
svn path=/trunk/matplotlib/; revision=1943
1 parent bb8db65 commit 8f5b981

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2006-1-11 Fixed setup.py for win32 build and added rc template to the MANIFEST.in
2+
13
2006-1-10 Added xpdf distiller option. matplotlibrc ps.usedistiller can now be
24
none, false, ghostscript, or xpdf. Validation checks for
35
dependencies. This needs testing, but the xpdf option should produce

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include API_CHANGES CHANGELOG KNOWN_BUGS INSTALL NUMARRAY_ISSUES
22
include INTERACTIVE TODO
33
include Makefile MANIFEST.in MANIFEST
4-
include matplotlibrc
4+
include matplotlibrc.template matplotlibrc
55
include __init__.py setupext.py setup.py makeswig.py
66
include examples/data/*
77
include images/*

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,8 @@ def add_dateutil():
278278
# defaults, eg
279279
#rc['numerix'] = numpy
280280
#rc['backend'] = GTKAgg
281+
if sys.platform=='win32':
282+
rc = dict(backend='TkAgg', numerix='Numeric')
281283
template = file('matplotlibrc.template').read()
282284
file('matplotlibrc', 'w').write(template%rc)
283285

0 commit comments

Comments
 (0)