Skip to content

Commit

Permalink
[setup] Set pyyaml minimum version
Browse files Browse the repository at this point in the history
Sucessfully tested pyyaml version 5.1 with python 2.7, 3.7 and 3.8
and use it as the new minimal version of pyyaml.
  • Loading branch information
mpsonntag committed Jan 22, 2020
1 parent 78d8cc1 commit af41ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
with open('README.md') as f:
description_text = f.read()

install_req = ["lxml", "pyyaml", "rdflib", "docopt", "pathlib"]
install_req = ["lxml", "pyyaml>=5.1", "rdflib", "docopt", "pathlib"]

if sys.version_info < (3, 4):
install_req += ["enum34"]
Expand Down

0 comments on commit af41ae1

Please sign in to comment.