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 1665F15800A for ; Sun, 20 Aug 2023 08:50:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EF262BC014; Sun, 20 Aug 2023 08:50:38 +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 D5AF52BC015 for ; Sun, 20 Aug 2023 08:50:37 +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 D7440335CCF for ; Sun, 20 Aug 2023 08:50:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47955B4C for ; Sun, 20 Aug 2023 08:50:35 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1692521427.a02f5371cd300f17bd84edc638d220690295cba9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dictdiffer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild X-VCS-Directories: dev-python/dictdiffer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a02f5371cd300f17bd84edc638d220690295cba9 X-VCS-Branch: master Date: Sun, 20 Aug 2023 08:50:35 +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: 6ee788fc-5e91-41d6-975a-f3481bc5c72d X-Archives-Hash: b3df364a0a341a0b7c55fd5770c2cf8d commit: a02f5371cd300f17bd84edc638d220690295cba9 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 20 08:21:46 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 20 08:50:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a02f5371 dev-python/dictdiffer: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild b/dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild index ce43e9660a18..679f3e140ee7 100644 --- a/dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild +++ b/dev-python/dictdiffer/dictdiffer-0.9.0-r1.ebuild @@ -3,8 +3,9 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools + inherit distutils-r1 pypi DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries"