File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ trepan 1.2.8 2022-06-05
2+ =======================
3+
4+ * Squelch traceback on break on unparsable file
5+ * Supporting trepan3k back to Python 2.4
6+
17trepan 1.2.5 2021-11-28
28=======================
39
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,25 +8,22 @@ function finish {
88
99function checkout_version {
1010 local repo=$1
11- echo Checking out master on $repo ...
12- (cd ../$repo && git checkout master && pyenv local $PYTHON_VERSION ) && \
11+ local branch=${2:- python-2.4}
12+ echo Checking out $branch on $repo ...
13+ (cd ../$repo && git checkout $branch && pyenv local $PYTHON_VERSION ) && \
1314 git pull
1415 return $?
1516}
1617
1718export PATH=$HOME /.pyenv/bin/pyenv:$PATH
1819owd=$( pwd)
1920bs=${BASH_SOURCE[0]}
20- if [[ $0 == $bs ]] ; then
21- echo " This script should be *sourced* rather than run directly through bash"
22- exit 1
23- fi
2421mydir=$( dirname $bs )
2522fulldir=$( readlink -f $mydir )
2623cd $fulldir /..
2724checkout_version python-spark && \
2825checkout_version python-filecache && \
29- checkout_version python-xdis && \
26+ checkout_version python-xdis python-2.4-to-2.7 && \
3027checkout_version python-uncompyle6 && \
3128git checkout master && pyenv local $PYTHON_VERSION && git pull
3229cd $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 " # noqa
7+ __version__ = "1.2.8 " # noqa
You can’t perform that action at this time.
0 commit comments