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 0519615817D for ; Mon, 17 Jun 2024 16:27:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62B652BC030; Mon, 17 Jun 2024 16:27:10 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42E4B2BC02E for ; Mon, 17 Jun 2024 16:27:10 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 581B6335D1C for ; Mon, 17 Jun 2024 16:27:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 781541D2C for ; Mon, 17 Jun 2024 16:27:06 +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: <1718641543.a30a8f7a306b656bb44dabb71618b188a6f6be2b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyasynchat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyasynchat/pyasynchat-1.0.4.ebuild X-VCS-Directories: dev-python/pyasynchat/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a30a8f7a306b656bb44dabb71618b188a6f6be2b X-VCS-Branch: master Date: Mon, 17 Jun 2024 16:27:06 +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: a249b64b-fbb9-4221-bbcb-3aef3c89f1be X-Archives-Hash: 2d44e6e94a91ea51816787e6ab276df0 commit: a30a8f7a306b656bb44dabb71618b188a6f6be2b Author: Michał Górny gentoo org> AuthorDate: Mon Jun 17 15:34:43 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 17 16:25:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30a8f7a dev-python/pyasynchat: Enable py3.13, fix deps Signed-off-by: Michał Górny gentoo.org> dev-python/pyasynchat/pyasynchat-1.0.4.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/pyasynchat/pyasynchat-1.0.4.ebuild b/dev-python/pyasynchat/pyasynchat-1.0.4.ebuild index b5a328e71004..ba48e9e8acdc 100644 --- a/dev-python/pyasynchat/pyasynchat-1.0.4.ebuild +++ b/dev-python/pyasynchat/pyasynchat-1.0.4.ebuild @@ -4,13 +4,13 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_12 ) +PYTHON_COMPAT=( python3_{12..13} ) inherit distutils-r1 pypi DESCRIPTION="Make asynchat available for Python 3.12 onwards" HOMEPAGE=" - https://github.com/simonrob/pyasynchat + https://github.com/simonrob/pyasynchat/ https://pypi.org/project/pyasynchat/ " @@ -18,9 +18,12 @@ LICENSE="PSF-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86" -RDEPEND=">=dev-python/pyasyncore-1.0.2[${PYTHON_USEDEP}]" +RDEPEND=" + >=dev-python/pyasyncore-1.0.2[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest python_test() { - # Can't use d_e_t unittest (bug #926964) eunittest tests }