From 9d903d4511ccaf5d879e910f5888793f72fac326 Mon Sep 17 00:00:00 2001 From: "Reza J. Bavaghoush" Date: Sat, 13 Jan 2024 22:36:39 +0100 Subject: [PATCH 1/2] fix(core): relax pathspec upper bound version limitation --- core/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/setup.py b/core/setup.py index 3096b9efbc4..4c1037762f0 100644 --- a/core/setup.py +++ b/core/setup.py @@ -65,7 +65,7 @@ # These packages are major-version-0. Keep upper bounds on upcoming minor versions (which could have breaking changes) # and check compatibility / bump in each new minor version of dbt-core. "colorama>=0.3.9,<0.5", - "pathspec>=0.9,<0.12", + "pathspec>=0.9", "isodate>=0.6,<0.7", # ---- "sqlparse>=0.2.3,<0.5", From f37ea544d3e16976f4427decfa6ef9b831b01e4a Mon Sep 17 00:00:00 2001 From: "Reza J. Bavaghoush" Date: Wed, 17 Jan 2024 10:10:00 +0100 Subject: [PATCH 2/2] add changelog entry PR #9373 --- .changes/unreleased/Dependencies-20240117-100818.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Dependencies-20240117-100818.yaml diff --git a/.changes/unreleased/Dependencies-20240117-100818.yaml b/.changes/unreleased/Dependencies-20240117-100818.yaml new file mode 100644 index 00000000000..ca318fe1e57 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240117-100818.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Relax pathspec upper bound version restriction +time: 2024-01-17T10:08:18.009949641+01:00 +custom: + Author: rzjfr + PR: "9373"