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
13 changes: 12 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [1.0.0]
## [1.0.1] 2026-04-16

### Changed

* In release 0.4.0 some test functionality was moved to under `/src`. The dependencies
of this code were still classified as optional and therefore were not installed
in the production build of a package that has this package as a dependency. This
caused a run-time failure due to the unsatisfied dependencies.

`sqlalchemy-utils` and `pyyaml` are moved from optional to required dependencies.

## [1.0.0] 2026-04-07

### Changed

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ dynamic = ["version"]

description = "ORM and access layer for the existing multi-lims warehouse"
dependencies = [
"pyyaml",
"sqlalchemy>2.0.0",
"sqlalchemy-utils",
]

[project.optional-dependencies]
test = [
"pytest",
"ruff",
"pytest-it",
"sqlalchemy-utils",
"pyyaml",
"pymysql[rsa]",
]

Expand Down