From 1a20f762251e416d83c89aa8fb37106b5087a1a5 Mon Sep 17 00:00:00 2001 From: Aseem Bansal Date: Fri, 25 Mar 2022 00:56:38 +0530 Subject: [PATCH] fix(ingestion): pin Jinja2 to version < 3.1.0 (#4489) --- metadata-ingestion/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index d98d792013..05d96a4b3f 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -186,7 +186,7 @@ plugins: Dict[str, Set[str]] = { "snowflake": snowflake_common, "snowflake-usage": snowflake_common | {"more-itertools>=8.12.0"}, "sqlalchemy": sql_common, - "superset": {"requests", "sqlalchemy", "great_expectations", "greenlet"}, + "superset": {"requests", "sqlalchemy", "great_expectations", "greenlet", "Jinja2<3.1.0"}, "tableau": {"tableauserverclient>=0.17.0"}, "trino": sql_common | {"trino"}, "starburst-trino-usage": sql_common | {"trino"},