From 96b4fa6c449e6229a8fbc432de10cb4988d8a7c9 Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Tue, 7 Jul 2026 14:44:27 +0100 Subject: [PATCH 1/3] chore: add explicit support for 3.15 --- .github/workflows/CI.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5ecf20f..3b6409d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -37,7 +37,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, ubuntu-24.04, macos-14, macos-15, macos-26, windows-latest ] - python_version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11', '3.14'] + python_version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11', '3.14', '3.15'] exclude: - os: macos-14 python_version: '3.7' diff --git a/pyproject.toml b/pyproject.toml index 78deb5e..6f43dc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3.15", "Programming Language :: Python :: 3 :: Only", "Intended Audience :: Developers", "Operating System :: OS Independent", From 4f5b889af14db657c537ed43cd813b0563c78e5a Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Tue, 7 Jul 2026 14:45:19 +0100 Subject: [PATCH 2/3] chore: release 2.1.2 --- CHANGELOG.md | 8 ++++++++ src/wassima/_version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf4f66..bf64d3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to wassima will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 2.1.2 (2026-07-07) + +### Changed +- CCADB embedded bundle is updated to latest version. (#55) + +### Misc +- Explicit support for Python 3.15 + ## 2.1.1 (2026-06-07) ### Fixed diff --git a/src/wassima/_version.py b/src/wassima/_version.py index 55fd767..9b944dd 100644 --- a/src/wassima/_version.py +++ b/src/wassima/_version.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "2.1.1" +__version__ = "2.1.2" VERSION = __version__.split(".") From 7bd36c9edbb5f07f36034294ddbc513725f42a75 Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Tue, 7 Jul 2026 14:47:44 +0100 Subject: [PATCH 3/3] chore: add 3.15 nox session --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 659db70..5d4865b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,7 +5,7 @@ import nox -@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy"]) +@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15", "pypy"]) def test(session: nox.Session) -> None: # Install deps and the package itself. session.install("-r", "requirements-dev.txt")