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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39B611382C5 for ; Sat, 5 Jun 2021 13:52:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 112CFE0893; Sat, 5 Jun 2021 13:52:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8BBA2E08BB for ; Sat, 5 Jun 2021 13:52:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAFB9340C57 for ; Sat, 5 Jun 2021 13:52:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71E6E7A1 for ; Sat, 5 Jun 2021 13:52:08 +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: <1622900717.b2f09d8eb30828301da5c09d5a7a7ef75b5bd61c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/genson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/genson/genson-1.1.0.ebuild X-VCS-Directories: dev-python/genson/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b2f09d8eb30828301da5c09d5a7a7ef75b5bd61c X-VCS-Branch: master Date: Sat, 5 Jun 2021 13:52: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: c64bf660-c2fd-4ced-b802-6ebcdb8bd0df X-Archives-Hash: 7101c1e0c82b763244a1494ddef6d039 commit: b2f09d8eb30828301da5c09d5a7a7ef75b5bd61c Author: Michał Górny gentoo org> AuthorDate: Sat Jun 5 13:45:03 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 5 13:45:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2f09d8e dev-python/genson: Enable py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/genson/genson-1.1.0.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-python/genson/genson-1.1.0.ebuild b/dev-python/genson/genson-1.1.0.ebuild index d52c514b42f..23d76cdf783 100644 --- a/dev-python/genson/genson-1.1.0.ebuild +++ b/dev-python/genson/genson-1.1.0.ebuild @@ -1,12 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) - -DISTUTILS_USE_SETUPTOOLS=rdepend - +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="GenSON is a powerful, user-friendly JSON Schema generator built in Python" @@ -16,8 +13,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" BDEPEND="test? ( dev-python/jsonschema[${PYTHON_USEDEP}] )"