From 1be8aee09c3fe532d42be9b22cae914f29c11f2e Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Tue, 28 May 2024 14:56:23 +0500 Subject: [PATCH] Skip uvloop and bpython on 3.13. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 737baec84..5c2f34c6e 100644 --- a/tox.ini +++ b/tox.ini @@ -153,8 +153,8 @@ deps = robotexclusionrulesparser Pillow; python_version < '3.13' Twisted[http2] - uvloop; platform_system != "Windows" - bpython # optional for shell wrapper tests + uvloop; platform_system != "Windows" and python_version < '3.13' + bpython; python_version < '3.13' # optional for shell wrapper tests brotli; implementation_name != 'pypy' # optional for HTTP compress downloader middleware tests brotlicffi; implementation_name == 'pypy' # optional for HTTP compress downloader middleware tests zstandard; implementation_name != 'pypy' and python_version < '3.13' # optional for HTTP compress downloader middleware tests