Skip to content

Commit e1a519f

Browse files
committed
Admnistria
1 parent b380188 commit e1a519f

File tree

6 files changed

+104
-9
lines changed

6 files changed

+104
-9
lines changed

admin-tools/install-all-3.11.sh

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/usr/bin/bash
2+
PACKAGE_NAME=trepan3k
3+
PACKAGE_MODULE=trepan
4+
trepan3k_owd=$(pwd)
5+
bs=${BASH_SOURCE[0]}
6+
mydir=$(dirname $bs)
7+
trepan3k_fulldir=$(readlink -f $mydir)
8+
cd $trepan3k_fulldir
9+
. ./checkout_common.sh
10+
11+
pyenv_file="pyenv-3.11-versions"
12+
if ! source $pyenv_file ; then
13+
echo "Having trouble reading ${pyenv_file} version $(pwd)"
14+
exit 1
15+
fi
16+
17+
source ../${PACKAGE_MODULE}/version.py
18+
if [[ ! $__version__ ]] ; then
19+
echo "Something is wrong: __version__ should have been set."
20+
exit 1
21+
fi
22+
23+
cd ../dist/
24+
25+
install_check_command="trepan3k --help"
26+
install_file="trepan3k-${__version__}.tar.gz"
27+
for pyversion in $PYVERSIONS; do
28+
echo "*** Installing ${install_file} for Python ${pyversion} ***"
29+
pyenv local $pyversion
30+
pip install $install_file
31+
$install_check_command
32+
echo "----"
33+
done

admin-tools/install-all-3.3-3.5.sh

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/usr/bin/bash
2+
PACKAGE_NAME=trepan3k
3+
PACKAGE_MODULE=trepan
4+
trepan3k_owd=$(pwd)
5+
bs=${BASH_SOURCE[0]}
6+
mydir=$(dirname $bs)
7+
trepan3k_fulldir=$(readlink -f $mydir)
8+
cd $trepan3k_fulldir
9+
. ./checkout_common.sh
10+
11+
pyenv_file="pyenv-newest-versions"
12+
if ! source $pyenv_file ; then
13+
echo "Having trouble reading ${pyenv_file} version $(pwd)"
14+
exit 1
15+
fi
16+
17+
source ../${PACKAGE_MODULE}/version.py
18+
if [[ ! $__version__ ]] ; then
19+
echo "Something is wrong: __version__ should have been set."
20+
exit 1
21+
fi
22+
23+
cd ../dist/
24+
25+
install_check_command="trepan3k --help"
26+
install_file="trepan3k-${__version__}.tar.gz"
27+
for pyversion in $PYVERSIONS; do
28+
echo "*** Installing ${install_file} for Python ${pyversion} ***"
29+
pyenv local $pyversion
30+
pip install $install_file
31+
$install_check_command
32+
echo "----"
33+
done
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/usr/bin/bash
2+
PACKAGE_NAME=trepan3k
3+
PACKAGE_MODULE=trepan
4+
trepan3k_owd=$(pwd)
5+
bs=${BASH_SOURCE[0]}
6+
mydir=$(dirname $bs)
7+
trepan3k_fulldir=$(readlink -f $mydir)
8+
cd $trepan3k_fulldir
9+
. ./checkout_common.sh
10+
11+
pyenv_file="pyenv-newest-versions"
12+
if ! source $pyenv_file ; then
13+
echo "Having trouble reading ${pyenv_file} version $(pwd)"
14+
exit 1
15+
fi
16+
17+
source ../${PACKAGE_MODULE}/version.py
18+
if [[ ! $__version__ ]] ; then
19+
echo "Something is wrong: __version__ should have been set."
20+
exit 1
21+
fi
22+
23+
cd ../dist/
24+
25+
install_check_command="trepan3k --help"
26+
install_file="trepan3k-${__version__}.tar.gz"
27+
for pyversion in $PYVERSIONS; do
28+
echo "*** Installing ${install_file} for Python ${pyversion} ***"
29+
pyenv local $pyversion
30+
pip install $install_file
31+
$install_check_command
32+
echo "----"
33+
done

admin-tools/pyenv-3.11-versions

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.11'
10+
export PYVERSIONS='3.11 pypy3.11 graal-24.2.2'
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# -*- shell-script -*-
22
# Sets PYVERSIONS to be pyenv versions that
3-
# we can use in the master
4-
3+
# we can use in the python-3.6-to-3.10 branch.
54
if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
65
echo "This script should be *sourced* rather than run directly through bash"
76
exit 1
87
fi
9-
10-
# export PYVERSIONS='3.6 pypy3.6 3.7 pypy3.7 pypy3.8 pypy3.9 pyston 3.8 3.9 3.10'
11-
export PYVERSIONS='3.6 3.7 3.8 3.9 3.10'
8+
export PYVERSIONS='3.6 pypy3.6 3.7 pypy3.7 pyston-2.3.5 pypy3.8 graalpython-20.3.0 3.8 3.9 pypy3.9 3.9 pypy3.10 3.10'

admin-tools/pyenv-newest-versions

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# -*- shell-script -*-
22
# Sets PYVERSIONS to be pyenv versions that
3-
# we can use in the master
4-
3+
# we can use in the master branch.
54
if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
65
echo "This script should be *sourced* rather than run directly through bash"
76
exit 1
87
fi
98

10-
export PYVERSIONS='3.12 3.13'
9+
export PYVERSIONS='3.11 pypy3.11 graalpy-24.2.2 pypy3.11 3.12 graalpy-community-25.0.0 3.13'

0 commit comments

Comments
 (0)