Skip to content

Commit

Permalink
Limit jsonschema version to less than 4.18
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
robherring committed Apr 11, 2023
1 parent 7bdec7b commit 188cca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

install_requires=[
'ruamel.yaml>0.15.69',
'jsonschema>=4.1.2',
'jsonschema >=4.1.2, <4.18',
'rfc3987',
'pylibfdt',
],
Expand Down

0 comments on commit 188cca9

Please sign in to comment.