From 4342a2a159a22caa8689c2a15412d146c1b378b9 Mon Sep 17 00:00:00 2001 From: Sam Debruyn Date: Tue, 28 Feb 2023 15:58:27 +0100 Subject: [PATCH] fix: add pytz dependency (#7080) --- .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 b2f58533fba..56454e9049c 100644 --- a/core/setup.py +++ b/core/setup.py @@ -65,6 +65,7 @@ "dbt-extractor~=0.4.1", "typing-extensions>=3.7.4", "werkzeug>=1,<3", + "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 2701e4cab77..e13aa4628ea 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -14,7 +14,6 @@ pytest-dotenv pytest-logbook pytest-mock pytest-xdist -pytz tox>=3.13 twine types-colorama