Skip to content

Commit fed2322

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

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
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'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@ dependencies = [
2222
]
2323
requires-python = ">=3.10"
2424
readme = "README.rst"
25-
license = {text = "GPL"}
25+
license = "GPL-3.0-or-later"
2626
keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"]
2727
maintainers = [
2828
{name = "Mathics Group", email = "[email protected]"},
2929
]
3030
classifiers = [
3131
"Intended Audience :: Developers",
3232
"Intended Audience :: Science/Research",
33-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3433
"Programming Language :: Python",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)