From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF68615800A for ; Wed, 26 Jul 2023 08:21:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33193E0867; Wed, 26 Jul 2023 08:21:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19F88E0867 for ; Wed, 26 Jul 2023 08:21:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F2A834101B for ; Wed, 26 Jul 2023 08:21:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 663CDDD5 for ; Wed, 26 Jul 2023 08:21:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1690359678.41094c785115e45cc456028f1b9e914160e0d392.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: runtests X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 41094c785115e45cc456028f1b9e914160e0d392 X-VCS-Branch: master Date: Wed, 26 Jul 2023 08:21:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: acc59427-8ae4-48ee-a90b-688876acd1d5 X-Archives-Hash: b07404d0f883e337b41086039addf412 commit: 41094c785115e45cc456028f1b9e914160e0d392 Author: Sam James gentoo org> AuthorDate: Wed Jul 26 08:12:01 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 26 08:21:18 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=41094c78 runtests: update supported Python versions We're about to get rid of this, but.. Signed-off-by: Sam James gentoo.org> runtests | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtests b/runtests index 2b44079b8..1701190b4 100755 --- a/runtests +++ b/runtests @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2010-2020 Gentoo Authors +# Copyright 2010-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # # Note: We don't want to import portage modules directly because we do things @@ -20,9 +20,9 @@ import tempfile # These are the versions we fully support and require to pass tests. -PYTHON_SUPPORTED_VERSIONS = ["3.7", "3.8", "3.9", "3.10"] +PYTHON_SUPPORTED_VERSIONS = ["3.9", "3.10", "3.11"] # The rest are just "nice to have". -PYTHON_NICE_VERSIONS = ["pypy3", "3.11"] +PYTHON_NICE_VERSIONS = ["pypy3", "3.12"] EPREFIX = os.environ.get("PORTAGE_OVERRIDE_EPREFIX", "/")