From: <md...@us...> - 2009-01-06 19:26:33
|
Revision: 6747 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6747&view=rev Author: mdboom Date: 2009-01-06 19:26:31 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Remove examples as a stage in make.py, since it is now integrated into the build as an event-triggered plugin. Modified Paths: -------------- trunk/matplotlib/doc/make.py Modified: trunk/matplotlib/doc/make.py =================================================================== --- trunk/matplotlib/doc/make.py 2009-01-06 19:22:09 UTC (rev 6746) +++ trunk/matplotlib/doc/make.py 2009-01-06 19:26:31 UTC (rev 6747) @@ -26,12 +26,6 @@ def figs(): os.system('cd users/figures/ && python make.py') -def examples(): - 'make the rest examples' - - os.system('cd examples; svn-clean; python gen_rst.py') - #pass - def html(): check_build() shutil.copy('../lib/matplotlib/mpl-data/matplotlibrc', '_static/matplotlibrc') @@ -75,7 +69,6 @@ def all(): #figs() - examples() html() latex() @@ -87,7 +80,6 @@ 'clean' : clean, 'sf' : sf, 'sfpdf' : sfpdf, - 'examples' : examples, 'all' : all, } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |