We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3d5bb commit aa8fc32Copy full SHA for aa8fc32
2 files changed
admin-tools/make-dist-3.0-3.1.sh
@@ -36,8 +36,7 @@ for pyversion in $PYVERSIONS; do
36
# Pick out first two number of version, e.g. 3.5.1 -> 35
37
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
38
rm -fr build
39
- python setup.py bdist_egg bdist_wheel
40
- mv -v dist/${PACKAGE}-$__version__-{py3,$first_two}-none-any.whl
+ python setup.py bdist_egg
41
done
42
43
tarball=dist/${PACKAGE}-${__version__}.tar.gz
admin-tools/pyenv-3.0-3.1-versions
@@ -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