Fix PyYAML requirement version

There is no 4.x
This commit is contained in:
yuvipanda
2018-06-28 14:32:07 -07:00
parent beb3e84942
commit a461f5b51b

View File

@@ -11,6 +11,6 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
'pyyaml==4.*'
'pyyaml==3.*'
]
)