Skip to content

Commit

Permalink
Get ready for release 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jul 31, 2022
1 parent e34174f commit 8610030
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
brew install asymptote
python -m pip install --upgrade pip
# Can comment out when next Mathics is released
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
# python -m pip install Mathics3[full]
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
python -m pip install Mathics3[full]
python -m pip install -e .
- name: Install mathicsscript
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev asymptote
python -m pip install --upgrade pip
# Can comment out when next Mathics is released
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
# python -m pip install Mathics3[full]
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
python -m pip install Mathics3[full]
python -m pip install -e .
- name: Install mathicsscript
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
choco install llvm
set LLVM_DIR="C:\Program Files\LLVM"
# Can comment out when next Mathics is released
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
# python -m pip Mathic3[full]
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3
python -m pip Mathic3[full]
pip install -e .
- name: Install mathicsscript
run: |
Expand Down
10 changes: 8 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
4.0.1dev
5.0.0
--------

* Adjust for Python 5.0.0 API
* Fixed autobrace and rewritten with Condition from prompt_toolkit.filter
* Add $GroupAutoComplete setting (default True) to disable completing closer group symbol. Feature provided by DUO Labs and Alessandro Piras.
* Remove bindings for the right brackets
* For prompt-toolkit and GNU Readline users, we allow a user input binding file in CONFIGDIR/inputrc (e.g. ~/.config/mathicsscript/inputrc).
You can set the location this file via environment variable MATHICS_INPUTRC

* Handle version-getting timeout better
* Python 3.6 tolerance
* Create code of conduct
* Some code linting

4.0.0
-----
Expand Down
2 changes: 1 addition & 1 deletion admin-tools/pyenv-versions
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
export PYVERSIONS='3.6.14 3.7.11 pyston-2.3 3.8.11 3.9.7'
export PYVERSIONS='3.7.13 pyston-2.3.4 pypy3.9-7.3.9 3.8.13 3.9.13 3.10.5'
2 changes: 1 addition & 1 deletion mathicsscript/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="5.0.0.dev0" # noqa
__version__="5.0.0" # noqa
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bdist_wheel]
universal = 1
universal = False

[metadata]
description_file = README.rst
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def read(*rnames):
},
install_requires=[
"Mathics_Scanner>=1.2.4",
"Mathics3 >= 5.0.0.dev0,<5.0.1",
"Mathics3 >= 5.0.0.dev0,<5.1.0",
"click",
"colorama",
"columnize",
Expand Down

0 comments on commit 8610030

Please sign in to comment.