Skip to content

Commit a26a102

Browse files
committed
Get ready for release 9.0.0
1 parent aad5f43 commit a26a102

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/.hypothesis
33
/.python-version
44
/ChangeLog
5+
/ChangeLog.orig
56
/ChangeLog.spell-corrected
67
/Mathics3_graph.egg-info
78
/build

NEWS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
9.0.0
2+
-----
3+
4+
Aug 29, 2025
5+
6+
Add support for Python 3.13. Drop Support for Python 3.8 and Python 3.9.
7+
8+
Track API changes in Mathics3 Kernel.
9+
110
8.0.1
211
-----
312

admin-tools/make-dist.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
PACKAGE=pymathics-graph
2+
PACKAGE=mathics3-graph
33

44
# FIXME put some of the below in a common routine
55
function finish {
@@ -22,7 +22,7 @@ echo $__version__
2222
if ! pyenv local $pyversion ; then
2323
exit $?
2424
fi
25-
python setup.py bdist_wheel --universal
26-
mv -v dist/pymathics_graph-${__version__}-{py2.,}py3-none-any.whl
27-
python ./setup.py sdist
25+
pyenv local 3.13
26+
pip wheel --wheel-dir=dist .
27+
python -m build --sdist
2828
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 3.9 3.10 3.11'
8+
export PYVERSIONS='3.10 3.11 3.12 3.13'

0 commit comments

Comments
 (0)