From ef25698d3dd2cb0c0f0b0123131f060265cc57fa Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Fri, 12 Mar 2021 12:11:34 +0100 Subject: [PATCH] Pin agate>=1.6,<1.6.2 to fix installation --- CHANGELOG.md | 1 + core/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 296159b93b6..9f73c79e77d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ Contributors: - Performance fixes for many different things ([#2862](https://github.com/fishtown-analytics/dbt/issues/2862), [#3034](https://github.com/fishtown-analytics/dbt/pull/3034)) - Update code to use Mashumaro 2.0 ([#3138](https://github.com/fishtown-analytics/dbt/pull/3138)) - Add an event to track resource counts ([#3050](https://github.com/fishtown-analytics/dbt/issues/3050), [#3156](https://github.com/fishtown-analytics/dbt/pull/3156)) +- Pin `agate<1.6.2` to avoid installation errors relating to its new dependency `PyICU` ([#3160](https://github.com/fishtown-analytics/dbt/issues/3160), [#3161](https://github.com/fishtown-analytics/dbt/pull/3161)) Contributors: - [@Bl3f](https://github.com/Bl3f) ([#3011](https://github.com/fishtown-analytics/dbt/pull/3011)) diff --git a/core/setup.py b/core/setup.py index 470401e60fc..5cfcc8be6fb 100644 --- a/core/setup.py +++ b/core/setup.py @@ -65,7 +65,7 @@ def read(fname): 'networkx>=2.3,<3', 'minimal-snowplow-tracker==0.0.2', 'colorama>=0.3.9,<0.4.4', - 'agate>=1.6,<2', + 'agate>=1.6,<1.6.2', 'isodate>=0.6,<0.7', 'json-rpc>=1.12,<2', 'werkzeug>=0.15,<2.0',