File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 brew install asymptote
2525 python -m pip install --upgrade pip
2626 # Can comment out when next Mathics is released
27- python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
28- # python -m pip install Mathics3[full]
27+ # python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
28+ python -m pip install Mathics3[full]
2929 python -m pip install -e .
3030 - name : Install mathicsscript
3131 run : |
Original file line number Diff line number Diff line change 2323 sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev asymptote
2424 python -m pip install --upgrade pip
2525 # Can comment out when next Mathics is released
26- python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
27- # python -m pip install Mathics3[full]
26+ # python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
27+ python -m pip install Mathics3[full]
2828 python -m pip install -e .
2929 - name : Install mathicsscript
3030 run : |
Original file line number Diff line number Diff line change 2626 choco install llvm
2727 set LLVM_DIR="C:\Program Files\LLVM"
2828 # Can comment out when next Mathics is released
29- python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
30- # python -m pip Mathic3[full]
29+ # python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
30+ python -m pip Mathic3[full]
3131 pip install -e .
3232 - name : Install mathicsscript
3333 run : |
Original file line number Diff line number Diff line change 1- 4 .0.1dev
1+ 5 .0.0
22--------
33
4+ * Adjust for Python 5.0.0 API
5+ * Fixed autobrace and rewritten with Condition from prompt_toolkit.filter
46* Add $GroupAutoComplete setting (default True) to disable completing closer group symbol. Feature provided by DUO Labs and Alessandro Piras.
7+ * Remove bindings for the right brackets
58* For prompt-toolkit and GNU Readline users, we allow a user input binding file in CONFIGDIR/inputrc (e.g. ~ /.config/mathicsscript/inputrc).
69 You can set the location this file via environment variable MATHICS_INPUTRC
7-
10+ * Handle version-getting timeout better
11+ * Python 3.6 tolerance
12+ * Create code of conduct
13+ * Some code linting
814
9154.0.0
1016-----
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.14 3.7.11 pyston-2.3 3.8.11 3.9.7 '
8+ export PYVERSIONS=' 3.7.13 pyston-2.3.4 pypy3.9-7.3.9 3.8.13 3.9.13 3.10.5 '
Original file line number Diff line number Diff line change 44# well as importing into Python. That's why there is no
55# space around "=" below.
66# fmt: off
7- __version__ = "5.0.0.dev0 " # noqa
7+ __version__ = "5.0.0" # noqa
Original file line number Diff line number Diff line change 11[bdist_wheel]
2- universal = 1
2+ universal = False
33
44[metadata]
55description_file = README.rst
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def read(*rnames):
7575 },
7676 install_requires = [
7777 "Mathics_Scanner>=1.2.4" ,
78- "Mathics3 >= 5.0.0.dev0,<5.0.1 " ,
78+ "Mathics3 >= 5.0.0.dev0,<5.1.0 " ,
7979 "click" ,
8080 "colorama" ,
8181 "columnize" ,
You can’t perform that action at this time.
0 commit comments