From 12db3848a047af02ac9a0fc842e01ad13887afc6 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Sun, 6 Aug 2023 15:39:32 -0400 Subject: [PATCH] bugfix: Pin jsonschema below 4.18 (not 4.1.8) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 79091a1..d20f28a 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ install_requires=[ "inflection>=0.2", "Markdown>=2.4", - "jsonschema>=2.3,<4.1.8", + "jsonschema>=2.3,<4.18", "six>=1.5.2", ], cmdclass=versioneer.get_cmdclass(),