From aa0b2b369ef3ee5845be584eee9b0304d2f9dd5d Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Mon, 16 Dec 2024 11:13:43 +0100 Subject: [PATCH] Remove dependency of typing-extensions (#300) 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. (cherry picked from commit e06d5229bff2d1520d0ed878b38ae31886cfba12) --- 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]