From 06e45dbd77b2078f6c4e028926bcd06703ce3d87 Mon Sep 17 00:00:00 2001 From: Sam Debruyn Date: Tue, 28 Feb 2023 15:05:28 +0100 Subject: [PATCH] fix: add pytz dependency (#7077) --- .changes/unreleased/Fixes-20230228-130318.yaml | 6 ++++++ core/setup.py | 1 + dev-requirements.txt | 1 - 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Fixes-20230228-130318.yaml diff --git a/.changes/unreleased/Fixes-20230228-130318.yaml b/.changes/unreleased/Fixes-20230228-130318.yaml new file mode 100644 index 00000000000..abcbee150a2 --- /dev/null +++ b/.changes/unreleased/Fixes-20230228-130318.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: add pytz dependency +time: 2023-02-28T13:03:18.353468+01:00 +custom: + Author: sdebruyn + Issue: "7077" diff --git a/core/setup.py b/core/setup.py index 3270a30092a..8001e6c7b31 100644 --- a/core/setup.py +++ b/core/setup.py @@ -64,6 +64,7 @@ "typing-extensions>=3.7.4", "werkzeug>=1,<3", "pathspec>=0.9,<0.11", + "pytz>=2015.7", # the following are all to match snowflake-connector-python "requests<3.0.0", "idna>=2.5,<4", diff --git a/dev-requirements.txt b/dev-requirements.txt index d744edc3e34..78c2fbff594 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -17,7 +17,6 @@ pytest-dotenv pytest-logbook pytest-mock pytest-xdist -pytz sphinx tox>=3.13 twine