Skip to content

Commit

Permalink
some release bugs
Browse files Browse the repository at this point in the history
svn path=/trunk/matplotlib/; revision=1943
  • Loading branch information
jdh2358 committed Jan 11, 2006
1 parent bb8db65 commit 8f5b981
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2006-1-11 Fixed setup.py for win32 build and added rc template to the MANIFEST.in

2006-1-10 Added xpdf distiller option. matplotlibrc ps.usedistiller can now be
none, false, ghostscript, or xpdf. Validation checks for
dependencies. This needs testing, but the xpdf option should produce
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include API_CHANGES CHANGELOG KNOWN_BUGS INSTALL NUMARRAY_ISSUES
include INTERACTIVE TODO
include Makefile MANIFEST.in MANIFEST
include matplotlibrc
include matplotlibrc.template matplotlibrc
include __init__.py setupext.py setup.py makeswig.py
include examples/data/*
include images/*
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ def add_dateutil():
# defaults, eg
#rc['numerix'] = numpy
#rc['backend'] = GTKAgg
if sys.platform=='win32':
rc = dict(backend='TkAgg', numerix='Numeric')
template = file('matplotlibrc.template').read()
file('matplotlibrc', 'w').write(template%rc)

Expand Down

0 comments on commit 8f5b981

Please sign in to comment.