Skip to content

Commit 5056754

Browse files
authored
Release 7.0.0 (#1064)
1 parent 751cc98 commit 5056754

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

admin-tools/check-versions.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
function finish {
3-
cd $owd
3+
cd $mathics_core_owd
44
}
55

66
# FIXME put some of the below in a common routine
7-
owd=$(pwd)
7+
mathics_core_owd=$(pwd)
88
trap finish EXIT
99

1010
cd $(dirname ${BASH_SOURCE[0]})
@@ -24,3 +24,4 @@ for version in $PYVERSIONS; do
2424
fi
2525
echo === $version ===
2626
done
27+
finish

admin-tools/make-dist.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ PACKAGE=mathics3
33

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

99
cd $(dirname ${BASH_SOURCE[0]})
10-
owd=$(pwd)
10+
mathics_core_owd=$(pwd)
1111
trap finish EXIT
1212

1313
if ! source ./pyenv-versions ; then
@@ -31,3 +31,4 @@ for pyversion in $PYVERSIONS; do
3131
done
3232

3333
python ./setup.py sdist
34+
finish

admin-tools/pyenv-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
77
fi
8-
export PYVERSIONS='3.6.15 3.7.16 pyston-2.3.5 pypy3.9-7.3.11 3.8.17 3.9.18 3.10.13 3.11.7'
8+
export PYVERSIONS='3.8 pyston-2.3.5 pypy3.9-7.3.11 3.9 3.10 3.11'

0 commit comments

Comments
 (0)