Skip to content

Commit

Permalink
Allow new versions of yaml pkg dependencies to be installed
Browse files Browse the repository at this point in the history
  • Loading branch information
kbroch-rivosinc committed May 14, 2024
1 parent cf37473 commit 970ba11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
- all 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.

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Cerberus>=1.3.1
ruamel.yaml==0.17.16
pyyaml==5.2
ruamel.yaml>=0.17.16
pyyaml>=5.2
2 changes: 1 addition & 1 deletion riscv_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__version__ = '3.18.2'
__version__ = '3.18.3'

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.18.2
current_version = 3.18.3
commit = True
tag = True

Expand Down

0 comments on commit 970ba11

Please sign in to comment.