Skip to content
Snippets Groups Projects
Commit 6181c29d authored by Christophe Benz's avatar Christophe Benz
Browse files

Follow dbnomics-git-storage updates

parent ab7137e5
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ def validate_json_data_repository(repository_path, commit='HEAD'):
# Handle when series are stored in an external JSON lines file.
dataset_series = dataset_json.get("series")
if dataset_series is not None:
dataset_json["series"] = git_storage.get_series_json_list(repo, dataset_tree, dataset_series)
dataset_json["series"] = list(git_storage.iter_series_json(repo, dataset_tree, dataset_series))
# Validate dataset.json schema
dataset_schema_errors = validators.get_dataset_validation_errors(dataset_json)
......
......@@ -48,7 +48,7 @@ setup(
classifiers=[classifier for classifier in classifiers.split('\n') if classifier],
description=doc_lines[0],
install_requires=[
'dbnomics-git-storage >= 0.1, < 0.3',
'dbnomics-git-storage >= 0.4, < 0.5',
'dulwich == 0.18.6',
'jsonschema >= 2.6',
'ujson == 1.35',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment