commit: 1792d5e586f5733eda81e1a511dfb4a3a8acfd0e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 11:09:21 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 15 11:10:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1792d5e5
dev-python/httpx: Fix sed expression
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/httpx/httpx-0.22.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/httpx/httpx-0.22.0-r3.ebuild
b/dev-python/httpx/httpx-0.22.0-r3.ebuild
index 9575afbcd90f..f0f06597e614 100644
--- a/dev-python/httpx/httpx-0.22.0-r3.ebuild
+++ b/dev-python/httpx/httpx-0.22.0-r3.ebuild
@@ -54,7 +54,7 @@ distutils_enable_tests pytest
src_prepare() {
# unpin deps
- sed -i -e 's:==[0-9.*]*::' -e 's:,<[0-9.]*::' setup.py || die
+ sed -i -e 's:==[0-9.*]\+::' -e 's:,<[0-9.]\+::' setup.py || die
if ! use cli; then
sed -i -e '/console_scripts/d' setup.py || die
fi