From 1a1019cd5fa819ac9a43d3b647c3525c4a1fb322 Mon Sep 17 00:00:00 2001 From: tlento Date: Tue, 19 Dec 2023 17:02:49 -0800 Subject: [PATCH] Remove MarkupSafe dependency We do not use MarkupSafe directly. Historically, we've needed this because sometime, somewhere, something was causing runtime problems with the way Pandas was importing and loading MarkupSafe. Whatever that was appears to have been fixed - clean installs still load MarkupSafe (since it's a transitive dependency) and everything appears to be working as normal. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7a36838646..956cbf11e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,6 @@ classifiers = [ ] dependencies = [ "Jinja2>=2.11.3", - "MarkupSafe==2.0.1", # pandas implicitly requires this version "PyYAML~=6.0", "click>=7.1.2", "dbt-core~=1.7.0",