diff --git a/CHANGES.rst b/CHANGES.rst index 82e05afe1..a2aaa233c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,7 +7,10 @@ CHANGES * Upgrade to MathJax-2.7.9. See `MathJax v2.7.9 `_. Over a decade of improvements here. One that I like is that output which is too large to fit on this screen can be viewed in the Zoom popup which has a scrollbar. * Don't use MathJax for string output. (HTML/Hrefs coming later) +* String output is no longer passed to MathJax for rendering in MathML. As a result its output is more visually distinct from unexpanded and symbol output: + it is left aligned and in a different monospace font. In the future we may consider settings for enabling/disabling this. * Create a ``settings.m`` including ``Settings`$UseSansSerif`` and autoload that. +* "About" page expanded to include Machine, System, and Directory information diff --git a/admin-tools/pyenv-versions b/admin-tools/pyenv-versions index 1d1b34da9..f9c3c2ee0 100644 --- a/admin-tools/pyenv-versions +++ b/admin-tools/pyenv-versions @@ -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.13 3.7.10 3.8.9 3.9.2' +export PYVERSIONS='3.6.13 3.7.10 3.8.10 3.9.5' diff --git a/mathics_django/version.py b/mathics_django/version.py index 0368e2ea2..2130fa6d0 100644 --- a/mathics_django/version.py +++ b/mathics_django/version.py @@ -4,4 +4,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__="2.2.0rc1" # noqa +__version__="2.2.0" # noqa diff --git a/setup.py b/setup.py index 857a5b569..a1bef414b 100644 --- a/setup.py +++ b/setup.py @@ -56,8 +56,8 @@ def read(*rnames): # General Requirements INSTALL_REQUIRES += [ "Mathics-Scanner >= 1.2.0,<1.3.0", - "Mathics3 @ http://github.com/mathics/Mathics/archive/master.zip", - # "Mathics3 >= 2.1.1", + # "Mathics3 @ http://github.com/mathics/Mathics/archive/master.zip", + "Mathics3 >= 2.2.0", "django >= 3.2", "networkx >= 2.5", "requests",