File tree Expand file tree Collapse file tree 4 files changed +11
-95
lines changed Expand file tree Collapse file tree 4 files changed +11
-95
lines changed 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
+
1
7
trepan 1.2.5 2021-11-28
2
8
=======================
3
9
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,25 +8,22 @@ function finish {
8
8
9
9
function checkout_version {
10
10
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 ) && \
13
14
git pull
14
15
return $?
15
16
}
16
17
17
18
export PATH=$HOME /.pyenv/bin/pyenv:$PATH
18
19
owd=$( pwd)
19
20
bs=${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
24
21
mydir=$( dirname $bs )
25
22
fulldir=$( readlink -f $mydir )
26
23
cd $fulldir /..
27
24
checkout_version python-spark && \
28
25
checkout_version python-filecache && \
29
- checkout_version python-xdis && \
26
+ checkout_version python-xdis python-2.4-to-2.7 && \
30
27
checkout_version python-uncompyle6 && \
31
28
git checkout master && pyenv local $PYTHON_VERSION && git pull
32
29
cd $owd
Original file line number Diff line number Diff line change 4
4
# This file should define a variable VERSION which we use as the
5
5
# debugger version number.
6
6
7
- __version__ = "1.2.5 " # noqa
7
+ __version__ = "1.2.8 " # noqa
You can’t perform that action at this time.
0 commit comments