File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 2008-01-10 Use setup.cfg to set the default parameters (tkagg,
2+ numpy) when building windows installers - DSD
3+
14===============================================================
252008-01-06 Released 0.91.2 at revision 4802
36
Original file line number Diff line number Diff line change @@ -236,12 +236,8 @@ def add_dateutil():
236236print_line ()
237237
238238# Write the default matplotlibrc file
239- if sys .platform == 'win32' :
240- rc ['backend' ] = 'TkAgg'
241- rc ['numerix' ] = 'numpy'
242- else :
243- if options ['backend' ]: rc ['backend' ] = options ['backend' ]
244- if options ['numerix' ]: rc ['numerix' ] = options ['numerix' ]
239+ if options ['backend' ]: rc ['backend' ] = options ['backend' ]
240+ if options ['numerix' ]: rc ['numerix' ] = options ['numerix' ]
245241template = file ('matplotlibrc.template' ).read ()
246242file ('lib/matplotlib/mpl-data/matplotlibrc' , 'w' ).write (template % rc )
247243
You can’t perform that action at this time.
0 commit comments