From f3c5ee084f58652cc96d6516361be56ecf6d923a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 14 May 2025 10:34:35 +0200 Subject: [PATCH] dev-python/uvicorn: Enable py3.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/uvicorn/uvicorn-0.34.2.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-python/uvicorn/uvicorn-0.34.2.ebuild b/dev-python/uvicorn/uvicorn-0.34.2.ebuild index 09c8433bb0137..a2f468a29cb65 100644 --- a/dev-python/uvicorn/uvicorn-0.34.2.ebuild +++ b/dev-python/uvicorn/uvicorn-0.34.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} ) +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) inherit distutils-r1 optfeature @@ -73,6 +73,12 @@ python_test() { tests/middleware/test_logging.py::test_running_log_using_fd ) ;; + python3.14*) + EPYTEST_DESELECT+=( + # TODO + tests/test_auto_detection.py::test_loop_auto + ) + ;; esac local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1