File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff 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
4140done
4241
4342tarball=dist/${PACKAGE} -${__version__} .tar.gz
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments