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 .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-24.04", "ubuntu-latest"]

steps:
Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
Changelog
#########


2025.8.3 - 2025-08-25
---------------------

* packaging

* add `Python :: 3.13` into `pyproject.toml`

* core

* minimize, fix and make `image_operations.blend_modes.*py` --> `image_operations.blend_functions.py` compatible with `image_operations.compositing.py`
* tests for `image_operations.blend_functions.py` are in `tests/image_operations/test_compositing.py`; rework the `tests/image_operations/test_compositing.py` altogether
* added tests for `image_operations.dtype_scale.py` and `image_operations.linear_normalization.py`

* CI/CD

* test with `python=3.13`


2025.8.2 - 2025-08-14
---------------------

Expand Down
2 changes: 1 addition & 1 deletion mapchete_eo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2025.8.2"
__version__ = "2025.8.3"
Loading