Skip to content

Commit f855f9b

Browse files
committed
[setup] Upgrade pyyaml dependency
Closes #291 With pyyaml version 4.2+ the breaking changes of version 4.1 have been amended. Setting a specific pyyaml version since all currently 4.2* released versions are beta making an unspecific pip install unavailable.
1 parent aaae2e2 commit f855f9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
with open('README.md') as f:
2929
description_text = f.read()
3030

31-
install_req = ["lxml", "pyyaml==3.13", "rdflib", "docopt", "pathlib"]
31+
install_req = ["lxml", "pyyaml==4.2b4", "rdflib", "docopt", "pathlib"]
3232

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

0 commit comments

Comments
 (0)