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 D0C56158020 for ; Mon, 12 Dec 2022 11:44:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5232EE086D; Mon, 12 Dec 2022 11:44:21 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BE0FE085E for ; Mon, 12 Dec 2022 11:44:21 +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 4ACF6341105 for ; Mon, 12 Dec 2022 11:44:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D0F9783 for ; Mon, 12 Dec 2022 11:44:18 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1670844175.165e7a86bf6bb5a9e5a32529a3499f076efd234e.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-steps/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pytest-steps/pytest-steps-1.8.0.ebuild X-VCS-Directories: dev-python/pytest-steps/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 165e7a86bf6bb5a9e5a32529a3499f076efd234e X-VCS-Branch: dev Date: Mon, 12 Dec 2022 11:44:18 +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: 04086a3f-feee-42fd-b618-3dce61ba2abb X-Archives-Hash: 82eab843b0c9cac9a95dbb0dd2b135ef commit: 165e7a86bf6bb5a9e5a32529a3499f076efd234e Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Fri Dec 9 09:41:22 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon Dec 12 11:22:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=165e7a86 dev-python/pytest-steps: enable py3.11 Closes: https://bugs.gentoo.org/884681 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/pytest-steps/pytest-steps-1.8.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild b/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild index 5140e90f1..076d0d225 100644 --- a/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild +++ b/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild @@ -3,10 +3,12 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools + DOCS_BUILDER="mkdocs" DOCS_DEPEND="dev-python/mkdocs-material" -DOCS_DIR="docs" + inherit distutils-r1 docs DESCRIPTION="Create step-wise / incremental tests in pytest"