Skip to content

Commit

Permalink
Release 7.0.0 (#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky authored Aug 9, 2024
1 parent 751cc98 commit 5056754
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions admin-tools/check-versions.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
function finish {
cd $owd
cd $mathics_core_owd
}

# FIXME put some of the below in a common routine
owd=$(pwd)
mathics_core_owd=$(pwd)
trap finish EXIT

cd $(dirname ${BASH_SOURCE[0]})
Expand All @@ -24,3 +24,4 @@ for version in $PYVERSIONS; do
fi
echo === $version ===
done
finish
5 changes: 3 additions & 2 deletions admin-tools/make-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ PACKAGE=mathics3

# FIXME put some of the below in a common routine
function finish {
cd $owd
cd $mathics_core_owd
}

cd $(dirname ${BASH_SOURCE[0]})
owd=$(pwd)
mathics_core_owd=$(pwd)
trap finish EXIT

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

python ./setup.py sdist
finish
2 changes: 1 addition & 1 deletion admin-tools/pyenv-versions
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
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'
export PYVERSIONS='3.8 pyston-2.3.5 pypy3.9-7.3.11 3.9 3.10 3.11'

0 comments on commit 5056754

Please sign in to comment.