[Scipy-svn] r6585 - branches/0.8.x

scipy-svn at scipy.org scipy-svn at scipy.org
Sat Jul 3 09:08:20 EDT 2010


Author: rgommers
Date: 2010-07-03 08:08:20 -0500 (Sat, 03 Jul 2010)
New Revision: 6585

Added:
   branches/0.8.x/release.sh
Log:
REL: Add release script for 0.8.x branch.

Added: branches/0.8.x/release.sh
===================================================================
--- branches/0.8.x/release.sh	                        (rev 0)
+++ branches/0.8.x/release.sh	2010-07-03 13:08:20 UTC (rev 6585)
@@ -0,0 +1,23 @@
+#! /bin/sh
+# script to build tarballs, mac os x and windows installers on mac os x
+
+# copy sphinxext over from numpy, otherwise docs won't build
+cp -R ../numpy/doc/sphinxext/ doc/sphinxext/
+
+# launch a virtualenv to install scipy into so we can build docs
+paver bootstrap
+source bootstrap/bin/activate
+python setupsconsegg.py install
+
+paver sdist
+paver simple_dmg -p 2.6
+
+# necessary to set CC for Python 2.5 on Snow Leopard
+export CC=/usr/bin/gcc-4.0
+paver simple_dmg -p 2.5
+export CC=''
+
+# XXX: bdist_superpack doesn't take version option.
+paver bdist_superpack 
+# change PYVER to 2.5, then build another superpack
+#paver write_note_changelog




More information about the Scipy-svn mailing list