Skip to content
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
2 changes: 1 addition & 1 deletion bbconf/config_parser/bedbaseconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _read_config_file(config_path: str) -> ConfigFile:
Parsed ConfigFile object.
"""

_config = yacman.YAMLConfigManager(filepath=config_path).exp
_config = yacman.YAMLConfigManager.from_yaml_file(filepath=config_path).exp

config_dict = {}
for field_name, annotation in ConfigFile.model_fields.items():
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.


### [0.14.12] - 2026-04-22
### Changed:
- Updated yacman version to 2.0.0


### [0.14.11] - 2026-04-15
### Fixed:
- External id search
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bbconf"
version = "0.14.11"
version = "0.14.12"
description = "Configuration and data management tool for BEDbase"
readme = "README.md"
license = "BSD-2-Clause"
Expand All @@ -18,7 +18,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"yacman == 0.9.4",
"yacman >= 1.0.0",
"sqlalchemy >= 2.0.0",
"gtars >= 0.5.3",
"geniml[ml] >= 0.8.4",
Expand Down