From a9895f046a8eb4a9c37cbefcefb0e23868aca367 Mon Sep 17 00:00:00 2001 From: Antony Silvetti-Schmitt <87108679+Antony-SS@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:02:43 -0500 Subject: [PATCH 1/3] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7353e2a..0999c11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ dependencies = [ 'PuLP >= 2.7', 'gradio >= 3.44', 'gdown >= 4.7.1', + 'markupsafe==2.0.1', ] [tool.hatch.build.targets.wheel] From d69c90385494cacd2423ffb90ab4c7b7b26cc367 Mon Sep 17 00:00:00 2001 From: Antony Silvetti-Schmitt <87108679+Antony-SS@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:20:52 -0500 Subject: [PATCH 2/3] undo changes to pyproject.toml --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0999c11..7353e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,6 @@ dependencies = [ 'PuLP >= 2.7', 'gradio >= 3.44', 'gdown >= 4.7.1', - 'markupsafe==2.0.1', ] [tool.hatch.build.targets.wheel] From 7e341b301a4fab85b9632ac62def237fe45a86ff Mon Sep 17 00:00:00 2001 From: Antony Silvetti-Schmitt <87108679+Antony-SS@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:27:23 -0500 Subject: [PATCH 3/3] Update pyproject.toml Markupsafe version > 2.0.1 breaks gradio app, downgrading to 2.0.1 fixes --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7353e2a..b2ec57c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ dependencies = [ 'PuLP >= 2.7', 'gradio >= 3.44', 'gdown >= 4.7.1', + 'markupsafe==2.0.1' ] [tool.hatch.build.targets.wheel]