File tree Expand file tree Collapse file tree 4 files changed +37
-2
lines changed
Expand file tree Collapse file tree 4 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1+ 2.1.1
2+ -----
3+
4+ Administrative changes but necessary to get this working properly:
5+
6+ * Bump min version of mathicsscanner. There was a bug in mathicsscanner that prevented
7+ the GNU Readline inputrc files from getting created properly.
8+ * Include settings.m in distribution. There was a typo in setup.py for location of this file.
9+
1102.1.0
211-----
312
Original file line number Diff line number Diff line change 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-versions ; then
12+ exit $?
13+ fi
14+
15+ cd ..
16+ for version in $PYVERSIONS ; do
17+ echo --- $version ---
18+ if ! pyenv local $version ; then
19+ exit $?
20+ fi
21+ make clean && pip install -e .
22+ if ! make check; then
23+ exit $?
24+ fi
25+ echo === $version ===
26+ done
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
55 echo " This script should be *sourced* rather than run directly through bash"
66 exit 1
77fi
8- export PYVERSIONS=' 3.6.13 3.7.10 3.8.8 3.9.2 '
8+ export PYVERSIONS=' 3.6.13 3.7.10 3.8.9 3.9.3 '
Original file line number Diff line number Diff line change 33# This file is suitable for sourcing inside POSIX shell as
44# well as importing into Python. That's why there is no
55# space around "=" below.
6- __version__ = "2.1.1.dev0 " # noqa
6+ __version__ = "2.1.1" # noqa
You can’t perform that action at this time.
0 commit comments