From 1d928a1b8a33311d856e5dce6954f900b9195260 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Wed, 22 Mar 2023 09:46:07 +0100 Subject: [PATCH] Fix jsonschema version to match lower-constraint The jsonschema lower constraint for train is version 3.0.2. This is making some jobs fail because it can't install the diskimage-builder. Closes-Bug: #2012489 Change-Id: I620265f6bb09966ff5eaafe9b7b5ee960d0a4977 --- lower-constraints.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lower-constraints.txt b/lower-constraints.txt index 21b5c1e0..cd45a5a9 100644 --- a/lower-constraints.txt +++ b/lower-constraints.txt @@ -13,7 +13,7 @@ imagesize==0.7.1 iso8601==0.1.11 isort==4.3.4 Jinja2==2.10 -jsonschema==3.2.0 +jsonschema==3.0.2 keystoneauth1==3.4.0 lazy-object-proxy==1.3.1 linecache2==1.0.0 diff --git a/requirements.txt b/requirements.txt index 288349da..067d95f0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,4 @@ PyYAML>=3.12 # MIT stevedore>=1.20.0 # Apache-2.0 # NOTE(ianw) in here because dib-lint uses flake8 flake8<6.0.0,>=3.6.0 # MIT -jsonschema>=3.2.0 # MIT \ No newline at end of file +jsonschema>=3.0.2 # MIT