From 90d0a05bb2f4016b74d2b48fee1f685222b25d45 Mon Sep 17 00:00:00 2001 From: ghazi Date: Sat, 6 Dec 2025 10:16:24 +0100 Subject: [PATCH] test against python 3.14 --- .github/workflows/tests.yml | 2 +- CHANGELOG.md | 2 ++ pyproject.toml | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79519cf..8fc116e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: platform: [ ubuntu-latest, macos-latest, windows-latest ] - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: - uses: actions/checkout@v6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a8a388..d941591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [UNRELEASED] +### Added +- add support for python 3.14 ## [0.9.0] - 2024-10-11 ### Added diff --git a/pyproject.toml b/pyproject.toml index 8532943..8153800 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dynamic = ["version", "description"] requires-python = ">=3.8"