From b928e36406f9a0b40af7fcd21ffd7f50ac1935a7 Mon Sep 17 00:00:00 2001 From: James B Date: Tue, 25 Nov 2025 09:52:27 +0000 Subject: [PATCH] Drop python 3.9, add python 3.14 --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 4 ++++ setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 87c5313..4e5e66d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ] jsonref-version: ["==0.3", ">1"] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bcd747..75845fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Removed + +- We no longer support Python 3.9 - security support has ended + ## [0.27.0] - 2024-12-18 ### Added diff --git a/setup.py b/setup.py index e5fa273..896aa53 100644 --- a/setup.py +++ b/setup.py @@ -61,5 +61,5 @@ def run(self): }, package_data={"flattentool": ["locale/*/*/*.mo", "locale/*/*/*.po"]}, setup_requires=["babel"], - python_requires=">=3.9.0", + python_requires=">=3.10.0", )