From eae689929805091edf27d85d0b88c2a0ad670324 Mon Sep 17 00:00:00 2001 From: William Kimball <30981667+wwkimball@users.noreply.github.com> Date: Thu, 24 Jun 2021 18:16:35 -0500 Subject: [PATCH 1/2] Support ruamel.yaml up to 0.17.10 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c22813d..299774e 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ }, python_requires=">3.6.0", install_requires=[ - "ruamel.yaml>=0.15.96,!=0.17.0,!=0.17.1,!=0.17.2,!=0.17.5,<=0.17.7", + "ruamel.yaml>=0.15.96,!=0.17.0,!=0.17.1,!=0.17.2,!=0.17.5,<=0.17.10", ], tests_require=[ "pytest", From 86f627c0061c84cfddaa9e524522dfa737b3187a Mon Sep 17 00:00:00 2001 From: William Kimball <30981667+wwkimball@users.noreply.github.com> Date: Thu, 24 Jun 2021 18:17:54 -0500 Subject: [PATCH 2/2] Prep 3.6.1 --- CHANGES | 4 ++++ yamlpath/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 7673475..cd13897 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +3.6.1: +Enhancements: +* Enable verified support for ruamel.yaml up to version 0.17.10. + 3.6.0: Bug Fixes: * Some peculiar data constructions could cause the ConsolePrinter to stack-dump diff --git a/yamlpath/__init__.py b/yamlpath/__init__.py index 1364d53..d01f70b 100644 --- a/yamlpath/__init__.py +++ b/yamlpath/__init__.py @@ -1,6 +1,6 @@ """Core YAML Path classes.""" # Establish the version number common to all components -__version__ = "3.6.0" +__version__ = "3.6.1" from yamlpath.yamlpath import YAMLPath from yamlpath.processor import Processor