changeset 199:852f6c0c9298

Need a PyYAML version < 4. PyYAML 5 is out -- which dropped support for Python 2.6. Because we support Python 2.6 stay at version 3.
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 04 May 2019 14:23:09 +0200
parents 0b855758ba08
children c6904d02beae
files setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Fri May 03 22:26:06 2019 +0200
+++ b/setup.py	Sat May 04 14:23:09 2019 +0200
@@ -27,7 +27,7 @@
     long_description = rf.read()
 
 yaml_requirements = [
-    "PyYAML>=3.0",
+    "PyYAML>=3.0,<4",
 ]
 
 toml_requirements = [