Skip to content

Commit 6fbcf2f

Browse files
committed
EHN - build eggs for multiple versions of Python
1 parent 237b819 commit 6fbcf2f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/build_release

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ for d in ['build','dist',pjoin('docs','build'),pjoin('docs','dist')]:
2222
c('./setup.py sdist --formats=gztar,zip')
2323

2424
# Build eggs
25-
#c('python2.5 ./setupegg.py bdist_egg')
26-
c('python2.6 ./setup_egg.py bdist_egg')
25+
for version in ['2.5', '2.6', '2.7']:
26+
cmd='python'+version+' ./setup_egg.py bdist_egg'
27+
stat = os.system(cmd)

0 commit comments

Comments
 (0)