From 40107f961671fd55710f70eef30ea526298b5e22 Mon Sep 17 00:00:00 2001 From: Francesco Pantano Date: Thu, 25 Sep 2025 15:48:47 +0200 Subject: [PATCH] Add jsonschema and bump oslo.db requirements This patch adds jsonschema (which was missing) to the Manila requirements and bumps the oslo.db dependency to avoid issues with incompatible sqlalchemy versions. This bump has been checked against upper constraints [1], where oslo.db is limited to 17.4.0 and jsonschema to 4.25. [1] https://opendev.org/openstack/requirements/src/branch/master/upper-constraints.txt Change-Id: Ib2b6ff6f9c0a787d9cbd70b29c1e2a55e2d83bbb Signed-off-by: Francesco Pantano --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 00fb551264..581011e34e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ lxml>=4.5.2 # BSD netaddr>=0.8.0 # BSD oslo.config>=8.3.2 # Apache-2.0 oslo.context>=3.1.1 # Apache-2.0 -oslo.db>=8.4.0 # Apache-2.0 +oslo.db>=17.2.1 # Apache-2.0 oslo.i18n>=5.0.1 # Apache-2.0 oslo.log>=4.4.0 # Apache-2.0 oslo.messaging>=14.1.0 # Apache-2.0 @@ -49,3 +49,4 @@ python-glanceclient>=3.2.2 # Apache-2.0 WebOb>=1.8.6 # MIT cachetools>=4.2.1 # MIT packaging>=20.9 # Apache-2.0 +jsonschema>=4.17 # MIT