From 188cca9ae852edf1f21906c6a2912d52dd90144b Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 11 Apr 2023 17:21:49 -0500 Subject: [PATCH] Limit jsonschema version to less than 4.18 The current alpha for jsonschema 4.18 breaks our custom reference resolution. The API is going to be deprecated as well. Limit the version until we know jsonschema is fixed or dtschema is updated. From now on, pin the max version because this wouldn't be the first time a minor version broke us. :( Signed-off-by: Rob Herring --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 62db8afc..70419838 100755 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ install_requires=[ 'ruamel.yaml>0.15.69', - 'jsonschema>=4.1.2', + 'jsonschema >=4.1.2, <4.18', 'rfc3987', 'pylibfdt', ],