From 58a173ce6eae9993b4f3d95d5e715b791284bf9b Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Wed, 1 May 2024 11:50:27 +0100 Subject: [PATCH] DEP: Allow `jsonschema>=4,<5` --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f5fd9d7..6dff947 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,12 @@ setup( name="twined", - version="0.5.4", + version="0.5.5", py_modules=[], - install_requires=["jsonschema ~= 4.4.0", "python-dotenv"], + install_requires=[ + "jsonschema>=4,<5", + "python-dotenv", + ], url="https://www.github.com/octue/twined", license="MIT", author="Octue (github: octue)",