From f6dec76b6b81767e1a86f66f3958de909427e978 Mon Sep 17 00:00:00 2001 From: Andrew Sikowitz Date: Thu, 14 Sep 2023 10:14:02 -0700 Subject: [PATCH] build(ingest): Remove constraint on jsonschema for Python >= 3.8 --- metadata-ingestion/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 7a5fd355803cb..3067ccd71f92f 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -58,8 +58,8 @@ def get_long_description(): "requests_file", "jsonref", # jsonschema drops python 3.7 support in v4.18.0 - "jsonschema<=4.17.3 ; python_version < '3.8'", - "jsonschema>=4.18.0 ; python_version >= '3.8'", + "jsonschema<=4.17.3; python_version < '3.8'", + "jsonschema; python_version >= '3.8'", "ruamel.yaml", }