From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1632414-garchives=archives.gentoo.org@lists.gentoo.org> 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 268751581D3 for <garchives@archives.gentoo.org>; Fri, 17 May 2024 18:40:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77B042BC01D; Fri, 17 May 2024 18:40:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 615962BC01D for <gentoo-commits@lists.gentoo.org>; Fri, 17 May 2024 18:40:54 +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 9796033BF03 for <gentoo-commits@lists.gentoo.org>; Fri, 17 May 2024 18:40:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F37FD1ADD for <gentoo-commits@lists.gentoo.org>; Fri, 17 May 2024 18:40:51 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1715971242.784d26daa12bd0f74b66a9dddefb96c21cdf9935.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/intervaltree/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild X-VCS-Directories: dev-python/intervaltree/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 784d26daa12bd0f74b66a9dddefb96c21cdf9935 X-VCS-Branch: master Date: Fri, 17 May 2024 18:40:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 82929cc7-0bfb-4be7-a8d6-a81745f1e2e8 X-Archives-Hash: e432053be5bf6e6309703a90a8ebaa9b commit: 784d26daa12bd0f74b66a9dddefb96c21cdf9935 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri May 17 18:29:32 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri May 17 18:40:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784d26da dev-python/intervaltree: Enable py3.13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild b/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild index a1a366d75741..2657b926bef0 100644 --- a/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild +++ b/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild @@ -1,19 +1,25 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} pypy3 ) +PYTHON_COMPAT=( python3_{10..13} pypy3 ) + inherit distutils-r1 pypi DESCRIPTION="Editable interval tree data structure for Python 2 and 3" -HOMEPAGE="https://pypi.org/project/intervaltree/" +HOMEPAGE=" + https://github.com/chaimleib/intervaltree/ + https://pypi.org/project/intervaltree/ +" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 arm64 ~riscv x86" -RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/sortedcontainers[${PYTHON_USEDEP}] +" distutils_enable_tests pytest