Skip to content

Commit 16eb6d9

Browse files
committed
Get ready for release 9.0.1 (#36)
1 parent e8c61f0 commit 16eb6d9

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGES.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
CHANGES
22
=======
33

4+
9.0.1
5+
-----
6+
7+
Sept 4, 2025
8+
9+
* Rerelease for botched wheel and tarball generation
10+
* Add Builtin Functions ``Antonyms`` and ``Synonyms``
11+
412
9.0.0
513
-----
614

admin-tools/check-versions.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ for version in $PYVERSIONS; do
1919
exit $?
2020
fi
2121
make clean && pip install -e .
22+
make develop
2223
if ! make check; then
2324
exit $?
2425
fi

pymathics/natlang/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.0" # noqa
8+
__version__="9.0.1" # noqa

pyproject.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ classifiers = [
5757
"Topic :: Software Development :: Interpreters",
5858
]
5959

60-
version = "9.0.0"
61-
# # FIXME: reinstate this
62-
# dynamic = ["version"]
60+
dynamic = ["version"]
6361

6462
[project.urls]
6563
Homepage = "https://github.com/Mathics3/Mathics3-Module-nltk"
@@ -75,8 +73,5 @@ packages = [
7573
"pymathics.natlang",
7674
]
7775

78-
# # FIXME: reinstate this
79-
# [tool.setuptools.dynamic]
80-
# # We cannot load the version directly from pymathics.natlang.__init__,
81-
# # because it would try to import modules which are not already installed.
82-
# version = {attr = "pymathics.natlang.version.__version__"}
76+
[tool.setuptools.dynamic]
77+
version = {attr = "pymathics.natlang.version.__version__"}

0 commit comments

Comments
 (0)