git: a6867d0979f4 - main - math/py-mathics: remove bogus sympy max version limitation
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Apr 2022 15:23:09 UTC
The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=a6867d0979f4d1a7d24aca96263b9b14a4ab8c89 commit a6867d0979f4d1a7d24aca96263b9b14a4ab8c89 Author: Dmitry Marakasov <amdmi3@FreeBSD.org> AuthorDate: 2022-04-08 13:52:49 +0000 Commit: Dmitry Marakasov <amdmi3@FreeBSD.org> CommitDate: 2022-04-08 15:20:59 +0000 math/py-mathics: remove bogus sympy max version limitation This fixes this and dependent ports, including math/mathicsscript, which is confirmed by `make test` Approved by: portmgr blanket --- math/py-mathics/Makefile | 1 + math/py-mathics/files/patch-setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/math/py-mathics/Makefile b/math/py-mathics/Makefile index 84ad2b79af7a..6847dc5ba338 100644 --- a/math/py-mathics/Makefile +++ b/math/py-mathics/Makefile @@ -2,6 +2,7 @@ PORTNAME= Mathics3 PORTVERSION= 4.0.0 +PORTREVISION= 1 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/math/py-mathics/files/patch-setup.py b/math/py-mathics/files/patch-setup.py index 8d7757bd7e40..92183486a8e3 100644 --- a/math/py-mathics/files/patch-setup.py +++ b/math/py-mathics/files/patch-setup.py @@ -1,11 +1,11 @@ ---- setup.py.orig 2022-02-20 13:30:03 UTC +--- setup.py.orig 2021-07-31 19:47:09 UTC +++ setup.py @@ -105,7 +105,7 @@ else: # General Requirements INSTALL_REQUIRES += [ "Mathics_Scanner>=1.2.1,<1.3.0", - "sympy>=1.8, <= 1.9dev", -+ "sympy>=1.8, <= 1.9", ++ "sympy>=1.8", "mpmath>=1.2.0", "numpy", "palettable",