# HG changeset patch # User Franz Glasner # Date 1556972589 -7200 # Node ID 852f6c0c92980f3f6e9231e07fbbe4fd533016ab # Parent 0b855758ba082a47e40443e59e38bbe119610a5e 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. diff -r 0b855758ba08 -r 852f6c0c9298 setup.py --- 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 = [