From f7c07e52921c26b96a8ec25591e82e41162e1f1f Mon Sep 17 00:00:00 2001 From: Utkarsh Sharma Date: Thu, 11 Aug 2022 18:17:29 +0530 Subject: [PATCH] Remove markupsafe from dependencies (#623) Description What is the current behavior? We might not need markupsafe package. closes: #622 What is the new behavior? remove it from pyprojects.py and try if our test cases pass without it. Does this introduce a breaking change? Nope --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c310fd8a04..78d31efcc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,6 @@ license = {file = "LICENSE"} requires-python = ">=3.7" dependencies = [ "apache-airflow>=2.0", - "markupsafe>=1.1.1,<2.1.0", "pandas>=1.3.4,<2.0.0", # Pinning it to <2.0.0 to avoid breaking changes "pyarrow", "python-frontmatter",