From 09d3c43da39d5f997ac88b0b7e9945de797eca02 Mon Sep 17 00:00:00 2001 From: Maria Karanasou Date: Mon, 21 Feb 2022 11:16:34 +0200 Subject: [PATCH] Allow PyYAML 6 and bump version --- .gitignore | 2 ++ requirements.txt | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b6e4761..b97131e 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,5 @@ dmypy.json # Pyre type checker .pyre/ + +.idea/ diff --git a/requirements.txt b/requirements.txt index b79ae3e..6c1cb55 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -PyYAML==5.* +PyYAML>=5.*, <=6.* diff --git a/setup.cfg b/setup.cfg index 0462197..58e6ff1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyaml_env -version = 1.1.4 +version = 1.1.5 author = Maria Karanasou author_email = karanasou@gmail.com description = Provides yaml file parsing with environment variable resolution diff --git a/setup.py b/setup.py index 5765d82..a38dc11 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ ] setup(name='pyaml_env', - version='1.1.4', + version='1.1.5', description='Provides yaml file parsing with ' 'environment variable resolution', long_description=long_description,