dev-python/moto: Fix idna dep requirement bug 733728

installed requires.txt was limiting the idna dep outside of the ebuild
DEPEND.  Remove the upper limit and tested with idna-2.10  OK.
Fixes a test failure bug in dev-util/buildbot.

Closes: https://bugs.gentoo.org/733728
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
This commit is contained in:
Brian Dolbec
2020-07-24 14:00:29 -07:00
parent a1aec01f33
commit 4b58be87e3

View File

@@ -69,6 +69,9 @@ python_prepare_all() {
-e '/cfn-lint/ d' \
-i setup.py moto.egg-info/requires.txt || die
sed -e 's|idna<2.9,>=2.5|idna>=2.5|' \
-i setup.py moto.egg-info/requires.txt || die
# Disable tests that fail with network-sandbox.
sed -e 's|^\(def \)\(test_context_manager()\)|\1_\2|' \
-e 's|^\(def \)\(test_decorator_start_and_stop()\)|\1_\2|' \