From 9834253f2dae90d83def806aef506242e14a7ec7 Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Sat, 6 Apr 2019 16:10:56 -0700 Subject: [PATCH] Uncap jsonschema The current cap on jsonschema is breaking the requirements test. The global cap was removed with this change https://review.openstack.org/#/c/649669/ Change-Id: I4dc433267b123e5396e378dfda2e05551896d62a --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index eef2c9aa9c..6cb7285743 100644 --- a/requirements.txt +++ b/requirements.txt @@ -31,7 +31,7 @@ PrettyTable<0.8,>=0.7.1 # BSD # For paste.util.template used in keystone.common.template Paste>=2.0.2 # MIT -jsonschema<3.0.0,>=2.6.0 # MIT +jsonschema>=2.6.0 # MIT pyOpenSSL>=17.1.0 # Apache-2.0 # Required by openstack.common libraries six>=1.10.0 # MIT