Skip to content

Commit 325c725

Browse files
authored
Merge pull request #13 from Mathics3/release-9.0
Get ready for release 9.0.1.
2 parents 073e29f + 0f45bcb commit 325c725

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
CHANGES
22
=======
3+
4+
09/04/2025
5+
6+
Rerelease to fix up botched packaging.
7+
8+
=======
9+
310
08/30/2025
411

512
Support Python 3.13. Remove support for Python 3.8 and Python 3.9.

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include README.rst
2+
include CHANGES.rst
3+
include ChangeLog
4+
include COPYING.txt
5+
include Makefile
6+
recursive-include pymathics *.py

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ clean:
1818
$(PYTHON) ./setup.py $@
1919

2020

21+
#: Make distirbution: wheels, eggs, tarball
22+
dist:
23+
./admin-tools/make-dist.sh
24+
2125
#: Create a ChangeLog from git via git log and git2cl
2226
ChangeLog: rmChangeLog
2327
git log --pretty --numstat --summary | $(GIT2CL) >$@

admin-tools/make-dist.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ if ! pyenv local $pyversion ; then
2626
exit $?
2727
fi
2828

29+
rm -fr build
2930
pip wheel --wheel-dir=dist .
3031
python -m build --sdist
3132
finish

pymathics/trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# well as importing into Python. That's why there is no
66
# space around "=" below.
77
# fmt: off
8-
__version__="9.0.1.dev0" # noqa
8+
__version__="9.0.1" # noqa

0 commit comments

Comments
 (0)