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': {