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 11#! /bin/bash
2- PYTHON_VERSION=3.7.5
2+ PYTHON_VERSION=3.7.10
33
44# FIXME put some of the below in a common routine
55function finish {
@@ -9,16 +9,8 @@ function finish {
99export PATH=$HOME /.pyenv/bin/pyenv:$PATH
1010owd=$( pwd)
1111bs=${BASH_SOURCE[0]}
12- if [[ $0 == $bs ]] ; then
13- echo " This script should be *sourced* rather than run directly through bash"
14- exit 1
15- fi
1612mydir=$( dirname $bs )
1713fulldir=$( readlink -f $mydir )
1814cd $fulldir /..
19- (cd ../python-spark && git checkout master && pyenv local $PYTHON_VERSION ) && git pull && \
20- (cd ../python-filecache && git checkout master) && \
21- (cd ../python-xdis && git checkout master && pyenv local $PYTHON_VERSION ) && git pull && \
22- (cd ../python-uncompyle6 && git checkout master && pyenv local $PYTHON_VERSION ) && git pull && \
23- git checkout master && pyenv local $PYTHON_VERSION && git pull
15+ git checkout master && pyenv local $PYTHON_VERSION && git pull
2416cd $owd
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ PYTHON_VERSION=3.2.6
3+
4+ # FIXME put some of the below in a common routine
5+ function finish {
6+ cd $owd
7+ }
8+
9+ export PATH=$HOME /.pyenv/bin/pyenv:$PATH
10+ owd=$( pwd)
11+ bs=${BASH_SOURCE[0]}
12+ mydir=$( dirname $bs )
13+ fulldir=$( readlink -f $mydir )
14+ cd $fulldir /..
15+ git checkout master && pyenv local $PYTHON_VERSION && git pull
16+ cd $owd
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