From 62729b161cf05cbbcaf18a5d6fd1b66d88529a90 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Fri, 7 Jul 2023 10:39:01 -0500 Subject: [PATCH 1/2] pin click --- core/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/setup.py b/core/setup.py index b232b1e2bd5..c56315997be 100644 --- a/core/setup.py +++ b/core/setup.py @@ -59,7 +59,8 @@ # ---- # dbt-core uses these packages in standard ways. Pin to the major version, and check compatibility # with major versions in each new minor version of dbt-core. - "click>=7.0,<9", + # temporarily pinning click for mypy failures: https://github.com/pallets/click/issues/2558 + "click>=8.1.1,<8.1.4", "networkx>=2.3,<4", # ---- # These packages are major-version-0. Keep upper bounds on upcoming minor versions (which could have breaking changes) From 99a72b3fc5bd14235459107870e97dab278d1bcc Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Fri, 7 Jul 2023 10:41:01 -0500 Subject: [PATCH 2/2] changelog --- .changes/unreleased/Dependencies-20230707-104052.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Dependencies-20230707-104052.yaml diff --git a/.changes/unreleased/Dependencies-20230707-104052.yaml b/.changes/unreleased/Dependencies-20230707-104052.yaml new file mode 100644 index 00000000000..adf4f413b88 --- /dev/null +++ b/.changes/unreleased/Dependencies-20230707-104052.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Pin click>=8.1.1,<8.1.4 +time: 2023-07-07T10:40:52.565603-05:00 +custom: + Author: emmyoop + PR: "8050"