File tree Expand file tree Collapse file tree 6 files changed +104
-9
lines changed
Expand file tree Collapse file tree 6 files changed +104
-9
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
77 exit 1
88fi
99
10- export PYVERSIONS=' 3.11'
10+ export PYVERSIONS=' 3.11 pypy3.11 graal-24.2.2 '
Original file line number Diff line number Diff line change 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.
54if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
65 echo " This script should be *sourced* rather than run directly through bash"
76 exit 1
87fi
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'
Original file line number Diff line number Diff line change 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.
54if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
65 echo " This script should be *sourced* rather than run directly through bash"
76 exit 1
87fi
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'
You can’t perform that action at this time.
0 commit comments