File tree Expand file tree Collapse file tree 9 files changed +20
-7
lines changed Expand file tree Collapse file tree 9 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 30
30
brew install mariadb
31
31
pip install pytest
32
32
# 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]
34
35
- name : Install pymathics.natlang
35
36
run : |
36
37
pip install -e .
Original file line number Diff line number Diff line change 27
27
python -m pip install --upgrade pip
28
28
pip install pytest
29
29
# 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]
31
32
- name : Install pymathics.natlang
32
33
run : |
33
34
pip install -e .
Original file line number Diff line number Diff line change 26
26
choco install llvm mariadb mysql-connector
27
27
pip install pytest
28
28
# 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]
30
31
- name : Install pymathics.natlang
31
32
run : |
32
33
pip install -e .
Original file line number Diff line number Diff line change 1
1
CHANGES
2
2
=======
3
3
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
+
4
11
2.2.0
5
12
-----
6
13
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
5
5
echo " This script should be *sourced* rather than run directly through bash"
6
6
exit 1
7
7
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'
Original file line number Diff line number Diff line change 64
64
from mathics .core .systemsymbols import SymbolMissing , SymbolN , SymbolRule
65
65
66
66
67
- SymbolDictionaryLookup = Symbol ("DictionaryLookup" )
67
+ SymbolDictionaryLookup = Symbol ("Pymathics`Natlang` DictionaryLookup" )
68
68
69
69
70
70
def _parse_nltk_lookup_error (e ):
Original file line number Diff line number Diff line change 5
5
# well as importing into Python. That's why there is no
6
6
# space around "=" below.
7
7
# fmt: off
8
- __version__ = "5.0.0.dev0"
8
+ __version__ = "5.0.0" # noqa
Original file line number Diff line number Diff line change
1
+ [bdist_wheel]
2
+ universal = False
3
+
1
4
[metadata]
2
5
description_file = README.rst
3
6
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def read(*rnames):
49
49
version = __version__ ,
50
50
packages = find_namespace_packages (include = ["pymathics.*" ]),
51
51
install_requires = [
52
- "Mathics3 >= 5.0.0.dev0,<5.0.1 " ,
52
+ "Mathics3 >= 5.0.0.dev0,<5.1.0 " ,
53
53
"click>=8.0" ,
54
54
"joblib>=1.0.1" ,
55
55
"llvmlite>=0.36" ,
You can’t perform that action at this time.
0 commit comments