Skip to content

Commit 6a0b3f0

Browse files
committed
More packaging admninistrivia
1 parent 5056754 commit 6a0b3f0

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

admin-tools/make-dist.sh

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@ cp -v ${HOME}/.local/var/mathics/doctest_latex_data.pcl mathics/data/
2020

2121
echo $__version__
2222

23-
for pyversion in $PYVERSIONS; do
24-
if ! pyenv local $pyversion ; then
25-
exit $?
26-
fi
27-
rm -fr build
28-
# PYPI no longer supports eggs
29-
# python setup.py bdist_egg
30-
python setup.py bdist_wheel
31-
done
32-
23+
pyversion=3.11
24+
if ! pyenv local $pyversion ; then
25+
exit $?
26+
fi
27+
rm -fr build
28+
python setup.py bdist_wheel
3329
python ./setup.py sdist
3430
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.8 pyston-2.3.5 pypy3.9-7.3.11 3.9 3.10 3.11'
8+
export PYVERSIONS='3.8 pyston-2.3.5 3.9 3.10 3.11'

0 commit comments

Comments
 (0)