Skip to content

Commit 8610030

Browse files
committed
Get ready for release 5.0.0
1 parent e34174f commit 8610030

8 files changed

Lines changed: 18 additions & 12 deletions

File tree

.github/workflows/osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
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: |

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
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: |

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
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: |

NEWS.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
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

915
4.0.0
1016
-----

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.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'

mathicsscript/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bdist_wheel]
2-
universal = 1
2+
universal = False
33

44
[metadata]
55
description_file = README.rst

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)