diff --git a/admin-tools/make-dist-3.0-3.1.sh b/admin-tools/make-dist-3.0-3.1.sh index 217f0719..b77035cb 100755 --- a/admin-tools/make-dist-3.0-3.1.sh +++ b/admin-tools/make-dist-3.0-3.1.sh @@ -36,8 +36,7 @@ for pyversion in $PYVERSIONS; do # Pick out first two number of version, e.g. 3.5.1 -> 35 first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//') rm -fr build - python setup.py bdist_egg bdist_wheel - mv -v dist/${PACKAGE}-$__version__-{py3,$first_two}-none-any.whl + python setup.py bdist_egg done tarball=dist/${PACKAGE}-${__version__}.tar.gz diff --git a/admin-tools/pyenv-3.0-3.1-versions b/admin-tools/pyenv-3.0-3.1-versions new file mode 100644 index 00000000..53e0b39c --- /dev/null +++ b/admin-tools/pyenv-3.0-3.1-versions @@ -0,0 +1,9 @@ +# -*- shell-script -*- +# Sets PYVERSIONS to be pyenv versions that +# we can use in the python-3.1-to-3.2 branch. + +if [[ $0 == ${BASH_SOURCE[0]} ]] ; then + echo "This script should be *sourced* rather than run directly through bash" + exit 1 +fi +export PYVERSIONS='3.0.1 3.1.5'