Updated to version 1.7.3#13
Merged
Merged
Conversation
btsouts
approved these changes
Mar 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements to the Python package build and test workflow, enhances compatibility and reliability, and updates some core logic and documentation. The most significant changes are grouped below by theme.
Build and CI improvements:
The GitHub Actions workflow (
.github/workflows/signaloid-python.yaml) now tests against Python 3.10, 3.11, and 3.13, and uses a matrix build for broader compatibility. Artifacts and wheels are now tagged with the Python version, and wheels/releases are only uploaded for Python 3.11 on Ubuntu. The workflow also fetches all tags and history for proper versioning. [1] [2] [3] [4] [5] [6]Poetry is upgraded to version 1.8.0, and the
poetry-dynamic-versioningplugin is added and configured to set the package version from Git tags, enabling dynamic versioning inpyproject.toml. The static version is set to0.0.0as a placeholder. [1] [2]Dependency and compatibility updates:
pyproject.tomland mypy configuration. ThePillowdependency is added. [1] [2]Code and logic improvements:
DistributionalValue, mean calculation now sets the mean tonp.nanif the total mass is zero, improving robustness. Themean_relative_diffmethod now returnsmath.nanif the denominator is zero. [1] [2]PlotData._create_binningmethod is renamed tocreate_binningand made public, with all calls updated accordingly. The plot data construction logic now gracefully handles binning errors by falling back to a default binning scheme. [1] [2] [3] [4] [5]Documentation and copyright:
These changes collectively improve build reliability, support for multiple Python versions, and code robustness, while keeping documentation and dependencies up to date.