Skip to content

Commit

Permalink
Get ready for release 1.1.0
Browse files Browse the repository at this point in the history
Administrivia:
* Change PyPI package name to Mathics3
* wrong package name in make-dist.sh script
  • Loading branch information
rocky committed Nov 14, 2020
1 parent b41be5e commit 7a4d68a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
17 changes: 10 additions & 7 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,21 @@ CHANGES
1.1.0
-----

So we can get onto PyPI, the PyPI install name has changed from Mathics to Mathics3.


Enhancements and Bug fixes:
+++++++++++++++++++++++++++

- Add Symbolic Comparisons - PR #1000
- Support for externally PyPI-packagable builtin modules - PyMathics
- ``SetDirectory`` fixes PR #994
- Catch ```PatternError`` Exceptions
- Add Symbolic Comparisons. PR #1000
- Support for externally PyPI-packagable builtin modules - PyMathics.
- ``SetDirectory`` fixes. PR #994
- Catch ```PatternError`` Exceptions.
- Fix formatting of ``..`` and ``...`` (``RepeatAll``)
- tokenization of ``\.`` without a following space (``ReplaceAll``) Issue #992
- tokenization of ``\.`` without a following space (``ReplaceAll``). Issue #992
- Support for assignments to named ```Pattern```
- Improving support for ```Names``` PR #1003
- Adding a ```MathicsSession``` class to simplify interoperativity PR #1001
- Improving support for ```Names``. PR #1003
- Adding a ``MathicsSession`` class to simplify running Mathics from Python. PR #1001
- Improving support for ```Protect``` and ```Unprotect``` list of symbols and regular expressions. PR #1003


Expand Down
2 changes: 1 addition & 1 deletion admin-tools/make-dist.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
PACKAGE=mathicsscript
PACKAGE=mathics3

# FIXME put some of the below in a common routine
function finish {
Expand Down
2 changes: 1 addition & 1 deletion mathics/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# This file is suitable for sourcing inside POSIX shell as
# well as importing into Python. That's why there is no
# space around "=" below.
__version__="1.1.0rc1" # noqa
__version__="1.1.0" # noqa
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def run(self):
mathjax_files = list(subdirs("media/js/mathjax/"))

setup(
name="Mathics",
name="Mathics3",
cmdclass=CMDCLASS,
ext_modules=EXTENSIONS,
version=__version__,
Expand Down

0 comments on commit 7a4d68a

Please sign in to comment.