From 47e6c331e451c52aef9197a81b47ce5864793388 Mon Sep 17 00:00:00 2001 From: Matthew Topol Date: Mon, 11 Nov 2019 11:37:34 -0500 Subject: [PATCH] feat(jsonschema): Bumping jsonschema to >= 3.0.0 --- requirements/install.pip | 2 +- tests/test_routing.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/install.pip b/requirements/install.pip index 46ff0ee..abb5fc3 100644 --- a/requirements/install.pip +++ b/requirements/install.pip @@ -1,3 +1,3 @@ -jsonschema == 2.6.0 +jsonschema >= 3.0.0 quart >= 0.6.0, < 0.7.0;python_version<"3.7" quart >= 0.7.0;python_version>="3.7" diff --git a/tests/test_routing.py b/tests/test_routing.py index 2efb11c..40cee01 100644 --- a/tests/test_routing.py +++ b/tests/test_routing.py @@ -159,7 +159,7 @@ async def get(self, the_id): TEST_BASE_MODEL_SCHEMA = { '$schema': 'http://json-schema.org/schema#', - 'id': 'schema.json', + '$id': 'schema.json', 'components': { 'schemas': { 'User': {