Skip to content

Commit e03586f

Browse files
committed
Get ready for release 5.0.0
1 parent 54bb94c commit e03586f

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

.github/workflows/osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
brew install mariadb
3131
pip install pytest
3232
# Can remove after next Mathics-core release
33-
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
33+
#python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
34+
python -m pip install -e Mathics3[full]
3435
- name: Install pymathics.natlang
3536
run: |
3637
pip install -e .

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install pytest
2929
# Can remove after next Mathics-core release
30-
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
30+
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
31+
python -m pip install -e Mathics3[full]
3132
- name: Install pymathics.natlang
3233
run: |
3334
pip install -e .

.github/workflows/windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
choco install llvm mariadb mysql-connector
2727
pip install pytest
2828
# Can remove after next Mathics-core release
29-
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
29+
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
30+
python -m pip install -e Mathics3[full]
3031
- name: Install pymathics.natlang
3132
run: |
3233
pip install -e .

CHANGES.rst

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

4+
5.0.0
5+
-----
6+
7+
* Adjust for Mathics3 core 5.0.0 API
8+
* Use Spacy >= 3.4
9+
* Adjust for medium word list dictated by package and newer Spacy
10+
411
2.2.0
512
-----
613

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.6.13 3.7.10 3.8.10 3.9.5'
8+
export PYVERSIONS='3.6.13 3.7.13 3.8.13 3.9.13 3.10.5'

pymathics/natlang/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
from mathics.core.systemsymbols import SymbolMissing, SymbolN, SymbolRule
6565

6666

67-
SymbolDictionaryLookup = Symbol("DictionaryLookup")
67+
SymbolDictionaryLookup = Symbol("Pymathics`Natlang`DictionaryLookup")
6868

6969

7070
def _parse_nltk_lookup_error(e):

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__="5.0.0.dev0"
8+
__version__="5.0.0" # noqa

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[bdist_wheel]
2+
universal = False
3+
14
[metadata]
25
description_file = README.rst
36

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def read(*rnames):
4949
version=__version__,
5050
packages=find_namespace_packages(include=["pymathics.*"]),
5151
install_requires=[
52-
"Mathics3 >= 5.0.0.dev0,<5.0.1",
52+
"Mathics3 >= 5.0.0.dev0,<5.1.0",
5353
"click>=8.0",
5454
"joblib>=1.0.1",
5555
"llvmlite>=0.36",

0 commit comments

Comments
 (0)