From 9109e617ee5152408e65e82f2ea75a262bde81e6 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Sun, 4 Jun 2017 16:24:17 +0200 Subject: [PATCH] fix ruamel.yaml on 0.14.X for now Thank you for using ruamel.yaml. There will be API changes in the 0.15+ versions, that might lead to warnings that your users could see. Therefore please release a version of your package with this change, so that it will not automatically take the latest ruamel.yaml release. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 339d3c1..d71adf8 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['pypyr', 'boto3', 'ruamel.yaml'], + install_requires=['pypyr', 'boto3', 'ruamel.yaml<0.15'], # List additional groups of dependencies here (e.g. development # dependencies). You can install these using the following syntax,