Skip to content

Commit 9c813df

Browse files
committed
Administrivia + Get ready for release 1.2.5
1 parent 61a815e commit 9c813df

7 files changed

Lines changed: 55 additions & 13 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ owd=$(pwd)
88
trap finish EXIT
99

1010
cd $(dirname ${BASH_SOURCE[0]})
11-
if ! source ./pyenv-versions ; then
11+
if ! source ./pyenv-newer-versions ; then
1212
exit $?
1313
fi
1414

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
77
exit 1
88
fi
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'

admin-tools/pyenv-older-versions

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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'

admin-tools/setup-master.sh

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
55
function finish {
@@ -9,16 +9,8 @@ function finish {
99
export PATH=$HOME/.pyenv/bin/pyenv:$PATH
1010
owd=$(pwd)
1111
bs=${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
1612
mydir=$(dirname $bs)
1713
fulldir=$(readlink -f $mydir)
1814
cd $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
2416
cd $owd

admin-tools/setup-python-3.2.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
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

0 commit comments

Comments
 (0)