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 BA861158090 for ; Thu, 19 May 2022 04:09:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2C89E08C4; Thu, 19 May 2022 04:09:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8656E08C4 for ; Thu, 19 May 2022 04:09:11 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5A2D3416E4 for ; Thu, 19 May 2022 04:09:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CD53474 for ; Thu, 19 May 2022 04:09:08 +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: <1652933342.8e6aac417588b11a03abbfdf8b0e6c5f72a191ed.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: 8e6aac417588b11a03abbfdf8b0e6c5f72a191ed X-VCS-Branch: master Date: Thu, 19 May 2022 04:09:08 +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: caf99035-e14c-491f-8650-f2e2a247fbdf X-Archives-Hash: 80ab7e23f41ac0a6b4f0fda3df72e95f commit: 8e6aac417588b11a03abbfdf8b0e6c5f72a191ed Author: Sam James gentoo org> AuthorDate: Thu May 19 03:56:43 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 19 04:09:02 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8e6aac41 runtests: update supported impls list (move py3.10, add py3.11 to testing) Signed-off-by: Sam James gentoo.org> runtests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtests b/runtests index 2a653e3d4..732e083a0 100755 --- a/runtests +++ b/runtests @@ -20,9 +20,9 @@ import tempfile # These are the versions we fully support and require to pass tests. -PYTHON_SUPPORTED_VERSIONS = ["3.6", "3.7", "3.8", "3.9"] +PYTHON_SUPPORTED_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"] # The rest are just "nice to have". -PYTHON_NICE_VERSIONS = ["pypy3", "3.10"] +PYTHON_NICE_VERSIONS = ["pypy3", "3.11"] EPREFIX = os.environ.get("PORTAGE_OVERRIDE_EPREFIX", "/")