From bb0e985734690394e227d16af893b8e4ac8d3724 Mon Sep 17 00:00:00 2001 From: Martin Kopec Date: Tue, 26 Oct 2021 09:50:08 +0200 Subject: [PATCH] Cap jsonschema to 3.2.0 refstack fails with jsonschema>3.2.0 on result schema validation, until we will have resolved that the commit caps the jsonschema to the last working version - 3.2.0 Story: 2009327 Task: 43762 Change-Id: Ie70c85febbe723562f16633b6175ebc7a50925d8 --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 596dbe6b..915723c5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,9 @@ oslo.utils>=3.16.0 # Apache-2.0 pecan>=0.8.2 requests>=2.2.0,!=2.4.0 requests-cache>=0.4.9,<0.6.0 -jsonschema>=3.2.0 +# jsonschema is capped due to the following bug: +# https://storyboard.openstack.org/#!/story/2009327 +jsonschema==3.2.0 PyJWT>=2.0.0 # MIT WebOb>=1.7.1 # MIT PyMySQL>=0.6.2,!=0.6.4