Skip to content

Commit

Permalink
build(ingest): Remove constraint on jsonschema for Python >= 3.8 (#8842)
Browse files Browse the repository at this point in the history
  • Loading branch information
asikowitz authored Sep 14, 2023
1 parent 654b502 commit e75900b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}

Expand Down

0 comments on commit e75900b

Please sign in to comment.