From b6ef5525edd8394ef060d236fe3ba936b41d75d1 Mon Sep 17 00:00:00 2001 From: Kris <2893855659@qq.com> Date: Mon, 22 Jun 2026 21:22:25 +0800 Subject: [PATCH] build(backend): add croniter dependency to pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增croniter库作为后端项目依赖,用于处理定时任务相关的 cron 表达式解析等场景 --- backend/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index c6f02b17..bb680739 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -8,6 +8,7 @@ dependencies = [ "fastapi>=0.121", "uvicorn[standard]>=0.34.2", "arq>=0.26.3", + "croniter>=1.4.0", "yuxi", ] [tool.ruff]