Skip to content

Commit e6c4bb5

Browse files
committed
Administrivia
1 parent 83cc1e9 commit e6c4bb5

6 files changed

Lines changed: 21 additions & 42 deletions

File tree

.pre-commit-config.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ PACKAGE=trepan3k
33

44
# FIXME put some of the below in a common routine
55
function finish {
6-
cd $make_dist_32_owd
6+
cd $make_dist_33_owd
77
}
88

9-
make_trepan_dist_32_owd=$(pwd)
9+
make_trepan_dist_33_owd=$(pwd)
1010
trap finish EXIT
1111

1212
cd $(dirname ${BASH_SOURCE[0]})
1313

14-
if ! source ./pyenv-3.2-3.5-versions ; then
14+
if ! source ./pyenv-3.3-3.5-versions ; then
1515
exit $?
1616
fi
17-
if ! source ./setup-python-3.2.sh ; then
17+
if ! source ./setup-python-3.3.sh ; then
1818
exit $?
1919
fi
2020

21-
. ./setup-python-3.2.sh
21+
. ./setup-python-3.3.sh
2222

2323
cd ..
2424
source trepan/version.py
@@ -51,6 +51,6 @@ python ./setup.py sdist
5151
tarball=dist/${PACKAGE}-${__version__}.tar.gz
5252

5353
if [[ -f $tarball ]]; then
54-
mv -v $tarball dist/${PACKAGE}_32-${__version__}.tar.gz
54+
mv -v $tarball dist/${PACKAGE}_33-${__version__}.tar.gz
5555
fi
5656
finish

admin-tools/merge-for-3.0.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ PYTHON_VERSION=3.1
44
pyenv local $PYTHON_VERSION
55
cd $(dirname ${BASH_SOURCE[0]})
66
if . ./setup-python-3.0.sh; then
7-
git merge python-3.2-to-3.5
7+
git merge python-3.3-to-3.5
88
fi
99
cd $trepan_merge_30_owd
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#/bin/bash
2-
trepan_merge_32_owd=$(pwd)
3-
PYTHON_VERSION=3.2
2+
trepan_merge_33_owd=$(pwd)
3+
PYTHON_VERSION=3.3
44
pyenv local $PYTHON_VERSION
55
cd $(dirname ${BASH_SOURCE[0]})
6-
if . ./setup-python-3.2.sh; then
6+
if . ./setup-python-3.3.sh; then
77
git merge python-3.6-to-3.10
88
fi
9-
cd $trepan_merge_32_owd
9+
cd $trepan_merge_33_owd
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
2-
PYTHON_VERSION=3.2.6
2+
PYTHON_VERSION=3.3
33

44
# FIXME put some of the below in a common routine
55
function checkout_version {
66
local repo=$1
7-
version=${2:-python-3.0-to-3.2}
7+
version=${2:-python-3.3-to-3.5}
88
echo Checking out $version on $repo ...
99
(cd ../$repo && git checkout $version && pyenv local $PYTHON_VERSION) && \
1010
git pull
@@ -22,14 +22,16 @@ fi
2222
mydir=$(dirname $bs)
2323
fulldir=$(readlink -f $mydir)
2424
(cd $fulldir/.. && \
25-
checkout_version python-spark master && \
26-
checkout_version python-xdis && \
27-
checkout_version shell-term-background python-3.0-to-3.2 && \
28-
checkout_version pycolumnize python-3.0-to-3.5 && \
29-
checkout_version python-uncompyle6 python-3.0-to-3.2 \
25+
checkout_version python-spark python-3.3-to-3.5 && \
26+
checkout_version python-xdis python-3.3-to-3.5 && \
27+
checkout_version python-filecache python-3.3-to-3.5 && \
28+
checkout_version shell-term-background python-3.3-to-3.5 && \
29+
checkout_version_trepan3k pytracer python-3.3-to-3.5 && \
30+
checkout_version pycolumnize python-3.3-to-3.5 && \
31+
checkout_version python-uncompyle6 python-3.3-to-3.5 \
3032
)
3133

3234
cd $trepan3k_owd
3335
rm -v */.python-version 2>/dev/null || true
3436

35-
git checkout python-3.2-to-3.5 && pyenv local $PYTHON_VERSION && git pull
37+
git checkout python-3.3-to-3.5 && pyenv local $PYTHON_VERSION && git pull

0 commit comments

Comments
 (0)