From 8cfedce468634bd0def7b34611c2b4e43f01de71 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 12 Oct 2022 22:13:34 +0800 Subject: [PATCH] Use jsonschema v3.2.0 for Python 3.6 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b56713a4..735c4eac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -jsonschema>=4.16.0,<4.17 +jsonschema>=4.16.0,<4.17; python_version >= '3.7' +jsonschema==3.2.0; python_version < '3.7' # v3.2.0 is the last version to support Python 3.6 aiohttp>=3.8.3,<3.9 aiohttp-cors>=0.7.0,<0.8 aiofiles>=22.1.0,<22.2; python_version >= '3.7'