From dd6ea2f1c387b0d7436fa03d7b29c2c27f75ef76 Mon Sep 17 00:00:00 2001 From: Kevin Broch Date: Thu, 21 Dec 2023 11:42:23 -0800 Subject: [PATCH] Allow new versions of yaml pkg dependencies to be installed relates to #142 --- CHANGELOG.md | 4 ++++ requirements.txt | 4 ++-- riscv_config/__init__.py | 2 +- setup.cfg | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbde9be..32bbd54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [3.18.3] - 2024-05-14 + - allow yaml python pkg requirements to install newer versions #142 + ## [3.18.2] - 2024-04-16 - added yaml dump_flag which provides for the functions that dump yaml. diff --git a/requirements.txt b/requirements.txt index 88ea444..56e6e78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ Cerberus>=1.3.1 -ruamel.yaml==0.17.16 -pyyaml==5.2 +ruamel.yaml>=0.17.16 +pyyaml>=5.2 diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index 4c64bcc..3821f42 100644 --- a/riscv_config/__init__.py +++ b/riscv_config/__init__.py @@ -1,4 +1,4 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) -__version__ = '3.18.2' +__version__ = '3.18.3' diff --git a/setup.cfg b/setup.cfg index a21fc70..c6427e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.18.2 +current_version = 3.18.3 commit = True tag = True