commit: 418bd457b5813e37b6fbc8c6f08b565f25d0b337
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 8 18:22:11 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 8 18:23:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418bd457
dev-python/pytest-describe: Unpin dependencies
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
...test-describe-3.0.0.ebuild => pytest-describe-3.0.0-r1.ebuild} | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev-python/pytest-describe/pytest-describe-3.0.0.ebuild
b/dev-python/pytest-describe/pytest-describe-3.0.0-r1.ebuild
similarity index 84%
rename from dev-python/pytest-describe/pytest-describe-3.0.0.ebuild
rename to dev-python/pytest-describe/pytest-describe-3.0.0-r1.ebuild
index b6087b709dda..b9409fa5fb91 100644
--- a/dev-python/pytest-describe/pytest-describe-3.0.0.ebuild
+++ b/dev-python/pytest-describe/pytest-describe-3.0.0-r1.ebuild
@@ -20,10 +20,16 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
RDEPEND="
- <dev-python/pytest-9[${PYTHON_USEDEP}]
>=dev-python/pytest-6[${PYTHON_USEDEP}]
"
EPYTEST_PLUGIN_LOAD_VIA_ENV=1
EPYTEST_PLUGINS=( "${PN}" )
distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # unpin dependencies
+ sed -i -e 's:,<[0-9]*::' pyproject.toml || die
+}