From c4e03332e8b169bac4fe89b4c0ea5cdf9f2a511f Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 4 Sep 2025 09:42:15 -0400 Subject: [PATCH 1/3] Get ready for release 9.0.1 --- CHANGES.rst | 8 ++++++++ admin-tools/check-versions.sh | 1 + pymathics/natlang/version.py | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 27325ba..7894c06 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ CHANGES ======= +9.0.1 +----- + +Sept 4, 2025 + +* Rerelase for botched wheel and tarball generation +* Add Builtin Functions ``Antonyms`` and ``Synonyms`` + 9.0.0 ----- diff --git a/admin-tools/check-versions.sh b/admin-tools/check-versions.sh index da74640..ca16b90 100755 --- a/admin-tools/check-versions.sh +++ b/admin-tools/check-versions.sh @@ -19,6 +19,7 @@ for version in $PYVERSIONS; do exit $? fi make clean && pip install -e . + make develop if ! make check; then exit $? fi diff --git a/pymathics/natlang/version.py b/pymathics/natlang/version.py index 9d003f0..bac6451 100644 --- a/pymathics/natlang/version.py +++ b/pymathics/natlang/version.py @@ -5,4 +5,4 @@ # well as importing into Python. That's why there is no # space around "=" below. # fmt: off -__version__="9.0.0" # noqa +__version__="9.0.1" # noqa From 11037f04e461ed4ec9b9ad68f473a02490eb99ee Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 4 Sep 2025 16:32:58 -0400 Subject: [PATCH 2/3] Get ready for release 9.0.2 --- MANIFEST.in | 3 ++- admin-tools/make-dist.sh | 1 + pymathics/natlang/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index e0603d1..5009950 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,4 +3,5 @@ include CHANGES.rst include ChangeLog include LICENSE include Makefile -recursive-include test +recursive-include pymathics *.py +recursive-include test *.py diff --git a/admin-tools/make-dist.sh b/admin-tools/make-dist.sh index ef9c26b..0697190 100755 --- a/admin-tools/make-dist.sh +++ b/admin-tools/make-dist.sh @@ -24,6 +24,7 @@ if ! pyenv local $pyversion ; then exit $? fi +rm -fr build pip wheel --wheel-dir=dist . python -m build --sdist finish diff --git a/pymathics/natlang/version.py b/pymathics/natlang/version.py index bac6451..0ad7b51 100644 --- a/pymathics/natlang/version.py +++ b/pymathics/natlang/version.py @@ -5,4 +5,4 @@ # well as importing into Python. That's why there is no # space around "=" below. # fmt: off -__version__="9.0.1" # noqa +__version__="9.0.2" # noqa From e600955dbf950d7bd7b0cfcc162c8d4f1bc55f05 Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 4 Sep 2025 16:34:24 -0400 Subject: [PATCH 3/3] Get ready for release 9.0.2 --- CHANGES.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7894c06..f187590 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,12 +1,19 @@ CHANGES ======= +9.0.2 +----- + +Sept 4, 2025 + +* Rerelease for botched wheel and tarball generation. This time for sure! + 9.0.1 ----- Sept 4, 2025 -* Rerelase for botched wheel and tarball generation +* Rerelease for botched wheel and tarball generation * Add Builtin Functions ``Antonyms`` and ``Synonyms`` 9.0.0