Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D683384FAE for ; Sun, 30 Jul 2023 14:43:26 +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 9BoylZ8NSsYR for ; Sun, 30 Jul 2023 14:43:26 +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 2E63F84D9B for ; Sun, 30 Jul 2023 14:43:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 22408FBDB; Sun, 30 Jul 2023 14:43:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1690728206278490" MIME-Version: 1.0 Date: Sun, 30 Jul 2023 14:43:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230730144326.22408FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1690728206278490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jul 30 14:43:26 UTC 2023 Modified Files: pkgsrc/lang/python: pyversion.mk Log Message: Forget Python 3.7 for good To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 pkgsrc/lang/python/pyversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1690728206278490 Content-Disposition: inline Content-Length: 1209 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/pyversion.mk diff -u pkgsrc/lang/python/pyversion.mk:1.153 pkgsrc/lang/python/pyversion.mk:1.154 --- pkgsrc/lang/python/pyversion.mk:1.153 Thu Jul 20 13:24:38 2023 +++ pkgsrc/lang/python/pyversion.mk Sun Jul 30 14:43:25 2023 @@ -1,4 +1,4 @@ -# $NetBSD: pyversion.mk,v 1.153 2023/07/20 13:24:38 gdt Exp $ +# $NetBSD: pyversion.mk,v 1.154 2023/07/30 14:43:25 adam Exp $ # This file should be included by packages as a way to depend on # python when none of the other methods are appropriate, e.g. a @@ -11,7 +11,7 @@ # PYTHON_VERSION_DEFAULT # The preferred Python version to use. # -# Possible values: 27 37 38 39 310 311 +# Possible values: 27 38 39 310 311 # Default: 310 # # === Infrastructure variables === @@ -30,13 +30,13 @@ # order of the entries matters, since earlier entries are # preferred over later ones. # -# Possible values: 311 310 39 38 37 27 +# Possible values: 311 310 39 38 27 # Default: 311 310 39 38 27 # # PYTHON_VERSIONS_INCOMPATIBLE # The Python versions that are NOT acceptable for the package. # -# Possible values: 27 37 38 39 310 311 +# Possible values: 27 38 39 310 311 # Default: (empty) # # PYTHON_FOR_BUILD_ONLY --_----------=_1690728206278490--