From 8acb5dd7e9855c532ab0afa4dbaa6c348bee33a5 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 8 Oct 2023 11:29:48 +0200 Subject: [PATCH] CI: run unit tests in debug mode with python 3.11 Python 3.12 does not work with current aiohttp, see https://github.com/aio-libs/aiohttp/issues/7229 It is currently possible to build a wheel using aiohttp==3.9.0b0. However, unit tests fail in that case, because TestLNTransport::test_loop stalls. --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 7dd5cd0a8dd8..1c21b1eb5a7b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -20,7 +20,7 @@ task: ELECTRUM_PYTHON_VERSION: 3.11 - name: "unittests: Tox Python 3 debug mode" env: - ELECTRUM_PYTHON_VERSION: 3 + ELECTRUM_PYTHON_VERSION: 3.11 # enable additional checks: PYTHONASYNCIODEBUG: "1" PYTHONDEVMODE: "1"