From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F18DF1584AD for ; Thu, 17 Apr 2025 17:22:53 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id DBE13343017 for ; Thu, 17 Apr 2025 17:22:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 215371104B1; Thu, 17 Apr 2025 17:22:50 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 175551104B1 for ; Thu, 17 Apr 2025 17:22:50 +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 98DF4342FA7 for ; Thu, 17 Apr 2025 17:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 056441758 for ; Thu, 17 Apr 2025 17:22:48 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1744910534.c06bc57603d79b8bedf406d7dca53ba1a2794ceb.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lit/lit-15.0.7.ebuild dev-python/lit/lit-16.0.6.ebuild dev-python/lit/lit-17.0.6.ebuild X-VCS-Directories: dev-python/lit/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: c06bc57603d79b8bedf406d7dca53ba1a2794ceb X-VCS-Branch: master Date: Thu, 17 Apr 2025 17:22:48 +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: 4676b894-2d7d-4567-b3a5-564c745db224 X-Archives-Hash: 26fcc80a62c75ffd20354b419e74c99d commit: c06bc57603d79b8bedf406d7dca53ba1a2794ceb Author: Eli Schwartz gentoo org> AuthorDate: Wed Apr 16 19:44:37 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Thu Apr 17 17:22:14 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c06bc576 dev-python/lit: enable py3.13 for old versions Tests all pass the same regardless of version. 15 and 16 do have warning messages fixed in 17 e.g.: ``` SyntaxWarning: invalid escape sequence '\s' ``` but these aren't an issue for 3.13 support and there's no specific timeline for when this will be converted to an error anyway. Hopefully whenever they decide to make this a fatal error, the final remaining desperate stragglers on llvm 15 will have been ported, but we'll see. Acked-by: Sam James gentoo.org> Signed-off-by: Eli Schwartz gentoo.org> dev-python/lit/lit-15.0.7.ebuild | 4 ++-- dev-python/lit/lit-16.0.6.ebuild | 4 ++-- dev-python/lit/lit-17.0.6.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/lit/lit-15.0.7.ebuild b/dev-python/lit/lit-15.0.7.ebuild index d696ebab1f65..cbb381fbb221 100644 --- a/dev-python/lit/lit-15.0.7.ebuild +++ b/dev-python/lit/lit-15.0.7.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 llvm.org diff --git a/dev-python/lit/lit-16.0.6.ebuild b/dev-python/lit/lit-16.0.6.ebuild index 3b91f7542af3..60ec34b2e645 100644 --- a/dev-python/lit/lit-16.0.6.ebuild +++ b/dev-python/lit/lit-16.0.6.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 llvm.org diff --git a/dev-python/lit/lit-17.0.6.ebuild b/dev-python/lit/lit-17.0.6.ebuild index 5b15c0e83655..d7bad999bc89 100644 --- a/dev-python/lit/lit-17.0.6.ebuild +++ b/dev-python/lit/lit-17.0.6.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 llvm.org