Skip to content
Closed
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
8 changes: 6 additions & 2 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -39,13 +39,17 @@ jobs:
run: uv run pytest -v

smoke-test:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Released

## 5.2.0 - 03/02/2026

### Added

- Support for Python 3.14
- Direct dependency on scipy >= 1.17.0 to ensure compatibility with 3.14 until
scikit-learn adds it as a dependency

## 5.1.2 - 03/02/2026

## Changed
### Changed

- Relaxed the version constraint for Pillow to allow any version >= 9.3
- Fixed various CVEs in dependencies by updating them to latest versions
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "pylette"
version = "5.1.2"
version = "5.2.0"
description = "A Python library for extracting color palettes from images."
authors = [
{name = "Ivar Stangeby"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
requires-python = "<3.15,>=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -25,6 +25,7 @@ dependencies = [
"pillow>=9.3",
"requests>=2.32.3",
"scikit-learn>=1.2",
"scipy>=1.17.0", # Need this to support python 3.14, which is a transitive dependency of scikit-learn
"typer>=0.12.5",
]

Expand Down
Loading
Loading