File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ owd=$(pwd)
88trap finish EXIT
99
1010cd $( dirname ${BASH_SOURCE[0]} )
11- if ! source ./pyenv-versions ; then
11+ if ! source ./pyenv-newer- versions ; then
1212 exit $?
1313fi
1414
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ function finish {
3+ cd $owd
4+ }
5+
6+ # FIXME put some of the below in a common routine
7+ owd=$( pwd)
8+ trap finish EXIT
9+
10+ cd $( dirname ${BASH_SOURCE[0]} )
11+ if ! source ./pyenv-older-versions ; then
12+ exit $?
13+ fi
14+
15+ cd ..
16+ for version in $PYVERSIONS ; do
17+ if ! pyenv local $version ; then
18+ exit $?
19+ fi
20+ make clean && pip install -e .
21+ if ! make check; then
22+ exit $?
23+ fi
24+ done
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
77 exit 1
88fi
99
10- export PYVERSIONS=' 3.5.10 3. 6.13 3.3.7 3.4. 10 3.2.6 3.7. 10 3.8.10 '
10+ export PYVERSIONS=' 3.6.13 3.7. 10 3.8. 10 3.9.5 '
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 master
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+
10+ export PYVERSIONS=' 3.5.10 3.3.7 3.4.10 3.2.6'
Original file line number Diff line number Diff line change 44# This file should define a variable __version__ which we use as the
55# debugger version number.
66
7- __version__ = "1.2.5.dev0 " # noqa
7+ __version__ = "1.2.5" # noqa
You can’t perform that action at this time.
0 commit comments