Skip to content

Commit

Permalink
For #844 Unpin pykwalify
Browse files Browse the repository at this point in the history
  • Loading branch information
mugitty committed Sep 8, 2023
1 parent 4271e25 commit ffb86f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphstore/rule-runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"click",
"requests",
"pyYaml",
"pykwalify==1.6.0",
"pykwalify",
"SPARQLWrapper",
"yamldown",
"rdflib"
Expand Down
2 changes: 1 addition & 1 deletion scripts/combine-datasets-metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def main():
datasets = []
for fn in args.files:
f = open(fn, 'r')
obj = yaml.load(f)
obj = yaml.safe_load(f)
datasets.extend(obj['datasets'])
f.close()
print(dumps(datasets, sort_keys=True, indent=4, separators=(',', ': ')))
Expand Down

0 comments on commit ffb86f0

Please sign in to comment.