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 017761584AD for ; Wed, 16 Apr 2025 23:53:39 +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 BFADC343148 for ; Wed, 16 Apr 2025 23:53:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E76C9110494; Wed, 16 Apr 2025 23:53:34 +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 bobolink.gentoo.org (Postfix) with ESMTPS id D6E6C110494 for ; Wed, 16 Apr 2025 23:53:34 +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 8D327343141 for ; Wed, 16 Apr 2025 23:53:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC76C19B9 for ; Wed, 16 Apr 2025 23:53:32 +0000 (UTC) From: "Kyle Elbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kyle Elbert" Message-ID: <1744846893.727926ac73511fbdf835308c41b16a8eb3493756.kcelbert@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonlines/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/jsonlines/jsonlines-4.0.0.ebuild X-VCS-Directories: dev-python/jsonlines/ X-VCS-Committer: kcelbert X-VCS-Committer-Name: Kyle Elbert X-VCS-Revision: 727926ac73511fbdf835308c41b16a8eb3493756 X-VCS-Branch: dev Date: Wed, 16 Apr 2025 23:53:32 +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: 67d4e45c-dbc0-43e1-babb-91b49c546a8a X-Archives-Hash: e6a21135e9d57e68f70e54bcb8a07d13 commit: 727926ac73511fbdf835308c41b16a8eb3493756 Author: Kyle Elbert gmail com> AuthorDate: Wed Apr 16 23:39:44 2025 +0000 Commit: Kyle Elbert gmail com> CommitDate: Wed Apr 16 23:41:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=727926ac dev-python/jsonlines: enable py3.13 Signed-off-by: Kyle Elbert gmail.com> dev-python/jsonlines/jsonlines-4.0.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/jsonlines/jsonlines-4.0.0.ebuild b/dev-python/jsonlines/jsonlines-4.0.0.ebuild index 284968bca..cc8431757 100644 --- a/dev-python/jsonlines/jsonlines-4.0.0.ebuild +++ b/dev-python/jsonlines/jsonlines-4.0.0.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_{11..12} ) +PYTHON_COMPAT=( python3_{11..13} ) inherit distutils-r1 DESCRIPTION="Library with helpers for the jsonlines file format" @@ -24,6 +24,7 @@ SLOT="0" IUSE="test" RESTRICT="mirror" #overlay, no real issue RDEPEND="dev-python/attrs[${PYTHON_USEDEP}]" +BDEPEND=" test? ( ${RDEPEND} )" distutils_enable_tests pytest