From 39d557c28ab6f972388ba1d17ebc738ca8dabae4 Mon Sep 17 00:00:00 2001 From: Alex Gerveshi <15710060+agerveshi@users.noreply.github.com> Date: Fri, 29 Sep 2023 19:41:12 +0000 Subject: [PATCH] chore(deps): downgrade jsonschema dependency to 4.17 (#10) This maintains compatibility with python 3.7 Signed-off-by: Alex Gerveshi <15710060+agerveshi@users.noreply.github.com> --- THIRD-PARTY-LICENSES.txt | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/THIRD-PARTY-LICENSES.txt b/THIRD-PARTY-LICENSES.txt index 2705add..8387e6e 100644 --- a/THIRD-PARTY-LICENSES.txt +++ b/THIRD-PARTY-LICENSES.txt @@ -1,4 +1,4 @@ -** Python-jsonschema; version 4.19 -- https://github.com/python-jsonschema/jsonschema +** Python-jsonschema; version 4.17 -- https://github.com/python-jsonschema/jsonschema Copyright (c) 2013 Julian Berman Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/pyproject.toml b/pyproject.toml index 278842c..df66f29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires-python = ">=3.9" dependencies = [ "pyyaml ~= 6.0", - "jsonschema >= 4.19.0, == 4.*", + "jsonschema >= 4.17.0, == 4.*", ] [tool.hatch.build]