From e64c1052001a0a6a939ecd2577b7a355dfd467fa Mon Sep 17 00:00:00 2001 From: Night-stars-1 <99261160+Night-stars-1@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:07:37 +0800 Subject: [PATCH] Tzdata (#191) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 修复低版本python无法获取时区 * fix: 修复低版本python无法获取时区 --- pyproject.toml | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3a63c0f..1f7cdde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ dependencies = [ "pyyaml>=6.0.1", "tenacity>=8.2.3", "apscheduler>=3.10.4", + "tzdata==2023.3", ] requires-python = ">=3.11" license = {text = "MIT"} diff --git a/requirements.txt b/requirements.txt index dff472e..fa016cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,3 +7,4 @@ orjson==3.9.10 pydantic==2.5.1 PyYAML==6.0.1 tenacity==8.2.3 +tzdata==2023.3