From f87f9cf8aac15309afea3aa145a150d1b327c507 Mon Sep 17 00:00:00 2001 From: debuglevel Date: Wed, 3 Jan 2024 23:33:41 +0000 Subject: [PATCH] fix: use jsonschema<4.18 to support MSYS2 jsonschema >=4.18 introduced rust dependencies which do not (yet) work on MSYS2. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0816d439..88f151cd 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( obsoletes=['atticmatic'], install_requires=( 'colorama>=0.4.1,<0.5', - 'jsonschema', + 'jsonschema<4.18', 'packaging', 'requests', 'ruamel.yaml>0.15.0,<0.18.0', -- 2.40.1