From abbbffd80e461d81fe29aab823d4ef8496aa4c52 Mon Sep 17 00:00:00 2001 From: Marcin Niestroj Date: Fri, 10 Jan 2025 19:29:58 +0100 Subject: [PATCH] unpin trio version trio was pinned to 0.24.0 due to some instabilities in 0.25.0 version in CI runs. Right now the newest version is 0.28.0, so it might already be fixed. Additionally new trio version is required to run with Python 3.13, which is the latest stable release. Signed-off-by: Marcin Niestroj --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ba318b8..95d2dc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "imgtool", "pyyaml", "rich", - "trio==0.24.0", + "trio", "trio-websocket", ]