From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1415941-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 04EBB158094 for <garchives@archives.gentoo.org>; Thu, 7 Jul 2022 04:54:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75574E0985; Thu, 7 Jul 2022 04:54:32 +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 550CFE0985 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jul 2022 04:54:32 +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 29240340E6B for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jul 2022 04:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95545528 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jul 2022 04:54:29 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1657169650.06c88709bdb95ecc72fc54907fe0ee5f9f61a327.sam@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/fsleyes-props/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild X-VCS-Directories: sci-visualization/fsleyes-props/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 06c88709bdb95ecc72fc54907fe0ee5f9f61a327 X-VCS-Branch: master Date: Thu, 7 Jul 2022 04:54:29 +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: e27924df-8a4d-425d-af37-f64245d8755b X-Archives-Hash: a576a082c0f6a09b6f84691f0306f145 commit: 06c88709bdb95ecc72fc54907fe0ee5f9f61a327 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Jul 7 04:53:44 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jul 7 04:54:10 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=06c88709 sci-visualization/fsleyes-props: enable py3.10 See https://projects.gentoo.org/python/guide/distutils.html#running-tests-with-virtualx re virtx. Signed-off-by: Sam James <sam <AT> gentoo.org> sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild b/sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild index b3440c6ba..3fd2a3e01 100644 --- a/sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild +++ b/sci-visualization/fsleyes-props/fsleyes-props-1.7.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 virtualx @@ -36,6 +36,10 @@ python_prepare_all() { distutils-r1_python_prepare_all } +src_test() { + virtx distutils-r1_src_test +} + python_test() { - virtx epytest + epytest || die "Tests failed with ${EPYTHON}" }