Skip to content

Commit aa8fc32

Browse files
committed
Add 3.0 version
1 parent 7d3d5bb commit aa8fc32

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

admin-tools/make-dist-3.0-3.1.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ for pyversion in $PYVERSIONS; do
3636
# Pick out first two number of version, e.g. 3.5.1 -> 35
3737
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
3838
rm -fr build
39-
python setup.py bdist_egg bdist_wheel
40-
mv -v dist/${PACKAGE}-$__version__-{py3,$first_two}-none-any.whl
39+
python setup.py bdist_egg
4140
done
4241

4342
tarball=dist/${PACKAGE}-${__version__}.tar.gz

admin-tools/pyenv-3.0-3.1-versions

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# -*- shell-script -*-
2+
# Sets PYVERSIONS to be pyenv versions that
3+
# we can use in the python-3.1-to-3.2 branch.
4+
5+
if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
6+
echo "This script should be *sourced* rather than run directly through bash"
7+
exit 1
8+
fi
9+
export PYVERSIONS='3.0.1 3.1.5'

0 commit comments

Comments
 (0)