Skip to content

Commit 7a4d68a

Browse files
committed
Get ready for release 1.1.0
Administrivia: * Change PyPI package name to Mathics3 * wrong package name in make-dist.sh script
1 parent b41be5e commit 7a4d68a

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

CHANGES.rst

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@ CHANGES
44
1.1.0
55
-----
66

7+
So we can get onto PyPI, the PyPI install name has changed from Mathics to Mathics3.
8+
9+
710
Enhancements and Bug fixes:
811
+++++++++++++++++++++++++++
912

10-
- Add Symbolic Comparisons - PR #1000
11-
- Support for externally PyPI-packagable builtin modules - PyMathics
12-
- ``SetDirectory`` fixes PR #994
13-
- Catch ```PatternError`` Exceptions
13+
- Add Symbolic Comparisons. PR #1000
14+
- Support for externally PyPI-packagable builtin modules - PyMathics.
15+
- ``SetDirectory`` fixes. PR #994
16+
- Catch ```PatternError`` Exceptions.
1417
- Fix formatting of ``..`` and ``...`` (``RepeatAll``)
15-
- tokenization of ``\.`` without a following space (``ReplaceAll``) Issue #992
18+
- tokenization of ``\.`` without a following space (``ReplaceAll``). Issue #992
1619
- Support for assignments to named ```Pattern```
17-
- Improving support for ```Names``` PR #1003
18-
- Adding a ```MathicsSession``` class to simplify interoperativity PR #1001
20+
- Improving support for ```Names``. PR #1003
21+
- Adding a ``MathicsSession`` class to simplify running Mathics from Python. PR #1001
1922
- Improving support for ```Protect``` and ```Unprotect``` list of symbols and regular expressions. PR #1003
2023

2124

admin-tools/make-dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
PACKAGE=mathicsscript
2+
PACKAGE=mathics3
33

44
# FIXME put some of the below in a common routine
55
function finish {

mathics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# This file is suitable for sourcing inside POSIX shell as
66
# well as importing into Python. That's why there is no
77
# space around "=" below.
8-
__version__="1.1.0rc1" # noqa
8+
__version__="1.1.0" # noqa

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def run(self):
177177
mathjax_files = list(subdirs("media/js/mathjax/"))
178178

179179
setup(
180-
name="Mathics",
180+
name="Mathics3",
181181
cmdclass=CMDCLASS,
182182
ext_modules=EXTENSIONS,
183183
version=__version__,

0 commit comments

Comments
 (0)