From d7d12a38b1021a1a96f5824e35ce1b10406c8c19 Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Sun, 15 Dec 2024 00:58:58 +0100 Subject: [PATCH] Remove dependency of typing-extensions Since kiwipy pinning the upbound version of aio-pika to 9.4.0 to not include the bug of typing-extentions import error of https://github.com/mosquito/aio-pika/issues/649. --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9d996d5d..ba563ac8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,11 +29,9 @@ classifiers = [ keywords = ['workflow', 'multithreaded', 'rabbitmq'] requires-python = '>=3.8' dependencies = [ - 'kiwipy[rmq]~=0.8.3', + 'kiwipy[rmq]~=0.8.5', 'nest_asyncio~=1.5,>=1.5.1', 'pyyaml~=6.0', - # XXX: workaround for https://github.com/mosquito/aio-pika/issues/649 - 'typing-extensions~=4.12', ] [project.urls]