Skip to content

Commit 5215f76

Browse files
committed
Administrivia + Get ready for release 1.2.5
1 parent 61a815e commit 5215f76

5 files changed

Lines changed: 37 additions & 3 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'

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)