From e7fa16f12902788750045aacfa90d14fea5adb56 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Sun, 20 Sep 2026 14:21:48 +0300 Subject: [PATCH] fix(deps): cap faststream below 0.7.6 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e3d87aa..2f733b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,8 @@ classifiers = [ "Topic :: Software Development :: Libraries", ] dependencies = [ - "faststream>=0.7.1,<0.8", + # 0.7.6 makes SubscriberUsecase.add_task return None and drops _get_broker_registry; lift once this adapts. + "faststream>=0.7.1,<0.7.6", "redis>=5.0", "typing-extensions>=4.12.0", ]