From 888ce2f9bbe65cec9db9264fa68b3fb01a593ef0 Mon Sep 17 00:00:00 2001 From: Liang Jiaqing Date: Fri, 24 Apr 2026 17:24:09 +0800 Subject: [PATCH] fix(pyproject): correct dingtalk-stream version constraint (>=0.20, was >=1.0 which does not exist on PyPI) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 277f5db..5ac0326 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ all-frontends = [ "qrcode>=7.4", "lark-oapi>=1.0", "wecom-aibot-sdk>=1.0", - "dingtalk-stream>=1.0", + "dingtalk-stream>=0.20", ] [build-system]