From 655789711219f1389d10ec4399b0d3e57129fcff Mon Sep 17 00:00:00 2001 From: Bibin Thomas <43011950+bibinthomas007@users.noreply.github.com> Date: Fri, 25 Oct 2024 06:13:25 -0700 Subject: [PATCH] Update packaging version to fix compatibility issue Issue: Installation of Rasa caused a TypeError due to incompatibility between setuptools and packaging. Change: Updated the packaging version requirement in pyproject.toml to >=22.0. Benefit: This prevents future installation errors by ensuring packaging and setuptools are compatible. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a359b5fa5bfd..7b3e3b14e5e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,7 +109,7 @@ mattermostwrapper = "~2.2" rocketchat_API = ">=0.6.31,<1.31.0" colorhash = ">=1.0.2,<1.3.0" jsonschema = ">=3.2,<4.18" -packaging = ">=20.0,<21.0" +packaging = ">=22.0" pytz = ">=2019.1,<2023.0" rasa-sdk = "~3.7.0a1" colorclass = "~2.2"