From 449f7e62ec3edad201792f90157a5eaa67373b23 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Thu, 13 Oct 2022 11:03:32 +0200 Subject: [PATCH] Dependencies: Add lower limit for patch version of `nest-asyncio` (#241) The package breaks for `nest-asyncio==1.5.0` so the requirement is updated to add the lower bound `nest-asyncio>=1.5.1`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e0382961..006ad77e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ requires-python = '>=3.7' dependencies = [ 'aio-pika~=6.6', 'kiwipy[rmq]~=0.7.4', - 'nest_asyncio~=1.5', + 'nest_asyncio~=1.5,>=1.5.1', 'pyyaml~=5.4', ]