Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 11CFA8528A for ; Tue, 14 Nov 2023 00:12:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id zL3hJ4EQWC6i for ; Tue, 14 Nov 2023 00:12:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4F68F84E96 for ; Tue, 14 Nov 2023 00:12:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43E27FA3D; Tue, 14 Nov 2023 00:12:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699920740230930" MIME-Version: 1.0 Date: Tue, 14 Nov 2023 00:12:20 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/py-numpy16 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231114001220.43E27FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699920740230930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Nov 14 00:12:20 UTC 2023 Modified Files: pkgsrc/math/py-numpy16: Makefile Log Message: py-numpy16: remove support for Python 2 AFAICT this is not needed any longer; its Python 3.8 support is still needed though. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/math/py-numpy16/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699920740230930 Content-Disposition: inline Content-Length: 852 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-numpy16/Makefile diff -u pkgsrc/math/py-numpy16/Makefile:1.13 pkgsrc/math/py-numpy16/Makefile:1.14 --- pkgsrc/math/py-numpy16/Makefile:1.13 Mon Jul 3 20:40:57 2023 +++ pkgsrc/math/py-numpy16/Makefile Tue Nov 14 00:12:20 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2023/07/03 20:40:57 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2023/11/14 00:12:20 wiz Exp $ DISTNAME= numpy-1.16.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,8 +12,8 @@ HOMEPAGE= http://www.numpy.org/ COMMENT= Array processing for numbers, strings, records, and objects LICENSE= modified-bsd -# This package only exists to accomodate Python 2.7 and 3.8. -PYTHON_VERSIONS_ACCEPTED= 27 38 +# This package only exists to accomodate Python 3.8. +PYTHON_VERSIONS_ACCEPTED= 38 TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose --_----------=_1699920740230930--