From 83f6345b5c2ff354482d40c7bea4a657de5f05f9 Mon Sep 17 00:00:00 2001 From: Eugen C <1533818+armab@users.noreply.github.com> Date: Mon, 25 Sep 2023 11:58:05 +0100 Subject: [PATCH] Update changelog for jsonschema <=3.2 update --- CHANGELOG.rst | 2 ++ requirements.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d8fe90e9..97f513e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,8 @@ Changed * Update networkx >=2.6 for Python 3.8 to fix insecure deserialization #255 (improvement) Contributed by @Stealthii +* Update jsonschema requirements to allow 3.2 (improvement) + Contributed by @james-bellamy 1.5.0 ----- diff --git a/requirements.txt b/requirements.txt index 9837df00..152fd2b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ chardet>=3.0.2,<4.0.0 eventlet Jinja2>=2.11 # BSD License (3 clause) -jsonschema!=2.5.0,<3.2.0,>=2.0.0 # MIT +jsonschema!=2.5.0,>=2.0.0,<=3.2 # MIT # networkx v2.6 does not support Python3.6. Update networkx to match st2 networkx>=2.5.1,<2.6; python_version < '3.7' networkx>=2.6,<3; python_version >= '3.7'