From a691b57299d07d6ca5e44faaeb61365af7bf08b1 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Sun, 20 Sep 2026 17:21:33 +0300 Subject: [PATCH] fix(deps): raise the modern-di floor The declared >=3 resolves to 3.0.0, where the container is already closed when the worker resolves from it. Bisected against the suite: 3.1.0 is the first release the integration works with. arq's own >=0.25 floor is fine. Closes #28 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 386148a..6026208 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ "Typing :: Typed", "Topic :: Software Development :: Libraries", ] -dependencies = ["arq>=0.25,<1", "modern-di>=3,<4"] +dependencies = ["arq>=0.25,<1", "modern-di>=3.1,<4"] version = "0" [project.urls]