1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

math/py-sympy: Unbreak misc/py-torchvision by removing conflicting upper versiion limitation in math/py-sympy

Approved by:	portmgr@ (unbreak; blanket)
Reported by:	fallout
This commit is contained in:
Yuri Victorovich
2026-03-14 11:45:47 -07:00
parent 5f8f9ef64a
commit 055f6ddaab
2 changed files with 14 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
PORTNAME= sympy
PORTVERSION= 1.14.0
PORTREVISION= 1
CATEGORIES= math python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+13
View File
@@ -0,0 +1,13 @@
-- mpmath is at 1.4 which causes breakage in misc/py-torchvision and potentially other ports
--- setup.py.orig 2026-03-14 18:43:16 UTC
+++ setup.py
@@ -321,7 +321,7 @@ if __name__ == '__main__':
},
# Set upper bound when making the release branch.
install_requires=[
- 'mpmath >= 1.1.0, < 1.4',
+ 'mpmath >= 1.1.0',
],
py_modules=['isympy'],
packages=['sympy'] + modules + tests,