From 5c94382a6b3bb024cf0f6a0a4ca17bad373c9341 Mon Sep 17 00:00:00 2001 From: Jakov Smolic Date: Sat, 8 May 2021 13:37:53 +0100 Subject: [PATCH] dev-python/sniffio: Port to python3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakov Smolic Signed-off-by: Michał Górny --- dev-python/sniffio/sniffio-1.2.0.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/sniffio/sniffio-1.2.0.ebuild b/dev-python/sniffio/sniffio-1.2.0.ebuild index 89f3dc32585e2..ea9fbac068cbb 100644 --- a/dev-python/sniffio/sniffio-1.2.0.ebuild +++ b/dev-python/sniffio/sniffio-1.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) inherit distutils-r1 DESCRIPTION="Sniff out which async library your code is running under" @@ -26,6 +26,5 @@ python_test() { sniffio/_tests/test_sniffio.py::test_curio ) - pytest -vv ${deselect[@]/#/--deselect } || - die "Tests failed with ${EPYTHON}" + epytest ${deselect[@]/#/--deselect } }