From d6d04e4e88138bc813c3d40c634a20b8e750065b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 8 Nov 2025 19:15:23 +0100 Subject: [PATCH] dev-python/pytest-asyncio: Unpin dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- ...asyncio-1.2.0.ebuild => pytest-asyncio-1.2.0-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) rename dev-python/pytest-asyncio/{pytest-asyncio-1.2.0.ebuild => pytest-asyncio-1.2.0-r1.ebuild} (91%) diff --git a/dev-python/pytest-asyncio/pytest-asyncio-1.2.0.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-1.2.0-r1.ebuild similarity index 91% rename from dev-python/pytest-asyncio/pytest-asyncio-1.2.0.ebuild rename to dev-python/pytest-asyncio/pytest-asyncio-1.2.0-r1.ebuild index 8e9a571c97e5f..499f63e7e5317 100644 --- a/dev-python/pytest-asyncio/pytest-asyncio-1.2.0.ebuild +++ b/dev-python/pytest-asyncio/pytest-asyncio-1.2.0-r1.ebuild @@ -39,3 +39,10 @@ EPYTEST_DESELECT=( tests/test_event_loop_fixture.py::test_event_loop_fixture_asyncgen_error tests/test_event_loop_fixture.py::test_event_loop_fixture_handles_unclosed_async_gen ) + +src_prepare() { + distutils-r1_src_prepare + + # remove pins + sed -i -e 's:,<[0-9.]*::' pyproject.toml || die +}