diff --git a/graphics/py-pyqtgraph/Makefile b/graphics/py-pyqtgraph/Makefile index e561b405925b..8223b687f1a2 100644 --- a/graphics/py-pyqtgraph/Makefile +++ b/graphics/py-pyqtgraph/Makefile @@ -1,19 +1,20 @@ PORTNAME= pyqtgraph DISTVERSION= 0.12.1 +PORTREVISION= 1 CATEGORIES= graphics science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Scientific graphics and GUI library for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYNUMPY} USES= python:3.6+ USE_PYTHON= autoplist distutils NO_ARCH= yes .include diff --git a/graphics/py-pyqtgraph/files/patch-setup.py b/graphics/py-pyqtgraph/files/patch-setup.py new file mode 100644 index 000000000000..af16b70a8c39 --- /dev/null +++ b/graphics/py-pyqtgraph/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2021-04-19 21:31:31 UTC ++++ setup.py +@@ -143,7 +143,7 @@ setup( + "pyqtgraph": ["colors/maps/*.csv", "colors/maps/*.txt"], + }, + install_requires = [ +- 'numpy>=1.17.0', ++ 'numpy>0', + ], + **setupOpts + )