Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow new versions of yaml pkg dependencies to be installed #175

Merged
merged 2 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.18.4] - 2024-06-01
## [3.18.4] - 2024-06-01 (WIP)
- isa\_string variable in debug spec now depends on the hartid (instead of always depending on
`hart0`)
- allow yaml python pkg requirements to install newer versions #142

## [3.18.3] - 2024-05-28
- exclude Svnapot from march generation. fixes #178.
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
3 changes: 1 addition & 2 deletions riscv_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__version__ = '3.18.4'

__version__ = '3.18.4'