~jteh/trac-bzr/newDeps

« back to all changes in this revision

Viewing changes to release.sh

  • Committer: Martin von Gagern
  • Date: 2010-02-19 15:27:00 UTC
  • mto: (99.2.11 0.3)
  • mto: This revision was merged to the branch mainline in revision 104.
  • Revision ID: martin.vgagern@gmx.net-20100219152700-47tw9xsxe42yawlb
Added release script.

This script describes how I'm currently doing releases.  The actions on
launchpad aren't represented yet, though, as I still perform them manually:
create release, attach files, update bugs, write announcement, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
python setup.py release sdist upload --sign
 
6
for ABI in 2.4 2.5 2.6; do
 
7
    python$ABI setup.py release bdist_egg upload --sign
 
8
done