summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorgutteridge <gutteridge@pkgsrc.org>2022-04-09 23:46:52 +0000
committergutteridge <gutteridge@pkgsrc.org>2022-04-09 23:46:52 +0000
commit76053286025bc3f09ba257a81fff463de80a0891 (patch)
treef2cc48b039cc4a69a8db9f70360e3d47206d0e3d /math
parent8cf640ad0c00fd4d636b05533fa48470df96c069 (diff)
downloadpkgsrc-76053286025bc3f09ba257a81fff463de80a0891.tar.gz
py-numpy16: allow Python 3.7 as well (un-break builds)
Now that Python 3.7 is also directed here for builds, include it in PYTHON_VERSIONS_ACCEPTED.
Diffstat (limited to 'math')
-rw-r--r--math/py-numpy16/DESCR5
-rw-r--r--math/py-numpy16/Makefile7
2 files changed, 6 insertions, 6 deletions
diff --git a/math/py-numpy16/DESCR b/math/py-numpy16/DESCR
index 5ae1096e7ec..9ed222e40cb 100644
--- a/math/py-numpy16/DESCR
+++ b/math/py-numpy16/DESCR
@@ -8,5 +8,6 @@ create arrays of arbitrary type.
There are also basic facilities for discrete fourier transform,
basic linear algebra and random number generation.
-This is an old version that still supports Python 2.7, kept because it
-is required dependency of other packages that still require Python 2.7.
+This is an old version that still supports Python 2.7 and 3.7, kept because
+it is a required dependency of other packages that still require those
+versions.
diff --git a/math/py-numpy16/Makefile b/math/py-numpy16/Makefile
index 91194dcabdd..c9896e3d024 100644
--- a/math/py-numpy16/Makefile
+++ b/math/py-numpy16/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2022/01/05 20:47:36 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2022/04/09 23:46:52 gutteridge Exp $
DISTNAME= numpy-1.16.6
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -12,9 +12,8 @@ HOMEPAGE= http://www.numpy.org/
COMMENT= Array processing for numbers, strings, records, and objects
LICENSE= modified-bsd
-# While this builds with 3, the package only exists to accomodate
-# things that require python2.7.
-PYTHON_VERSIONS_ACCEPTED= 27
+# This package only exists to accomodate Python 2.7 and 3.7.
+PYTHON_VERSIONS_ACCEPTED= 37 27
TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose