diff --git a/CHANGES.rst b/CHANGES.rst index 28e87acb8..adfe70857 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,16 @@ CHANGES ======= +Change testing to facilitate openSUSE Tumbleweed distribution which uses Sympy 1.12. See `Issue #881 `_. + +6.0.2 +----- + +Package update +.............. + +#. SymPy 1.12 accepted + 6.0.1 ----- diff --git a/mathics/version.py b/mathics/version.py index 016c3d427..9ec994087 100644 --- a/mathics/version.py +++ b/mathics/version.py @@ -5,4 +5,4 @@ # well as importing into Python. That's why there is no # space around "=" below. # fmt: off -__version__="6.0.1" # noqa +__version__="6.0.2" # noqa diff --git a/setup.py b/setup.py index 66327215b..19b6c5c02 100644 --- a/setup.py +++ b/setup.py @@ -64,9 +64,9 @@ sys.exit(-1) else: INSTALL_REQUIRES += [ - "numpy<=1.24", + "numpy<1.25", "llvmlite", - "sympy>=1.8, < 1.12", + "sympy>=1.8", "pillow >= 9.2", ]