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 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 .
Original file line number Diff line number Diff line change 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 .
Original file line number Diff line number Diff line change 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 .
Original file line number Diff line number Diff line change 11CHANGES
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+
4112.2.0
512-----
613
Original file line number Diff line number Diff 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
77fi
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 6464from mathics .core .systemsymbols import SymbolMissing , SymbolN , SymbolRule
6565
6666
67- SymbolDictionaryLookup = Symbol ("DictionaryLookup" )
67+ SymbolDictionaryLookup = Symbol ("Pymathics`Natlang` DictionaryLookup" )
6868
6969
7070def _parse_nltk_lookup_error (e ):
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ [bdist_wheel]
2+ universal = False
3+
14[metadata]
25description_file = README.rst
36
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments