From 1d7a53709d98490ec8ef031914848eb3729d5f1d Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Fri, 27 Mar 2026 14:52:34 +0100 Subject: [PATCH 1/4] test under python 3.14 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 04a5f0d..612c2d4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,14 +22,14 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - python-version: ["3.11", "3.13"] + python-version: ["3.11", "3.13", "3.14"] env: [""] include: - env: "min-all-deps" python-version: "3.11" os: "ubuntu-latest" - env: "" - python-version: "3.13" + python-version: "3.14" os: "macos-latest" defaults: run: From a8bee7208c0d9dc8b021dd3d2463351ab84d20c1 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Fri, 27 Mar 2026 14:56:31 +0100 Subject: [PATCH 2/4] add classifier --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index a51a7ac..91c4813 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Atmospheric Science", "Topic :: Scientific/Engineering :: GIS", From 31dc69126b34c6029b36cc57671e9520482a3d9c Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Fri, 27 Mar 2026 14:56:40 +0100 Subject: [PATCH 3/4] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f96129..3734fa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Enhancements - Add python 3.13 to list of supported versions ([#158](https://github.com/mpytools/mplotutils/pull/158)). +- Add python 3.14 to list of supported versions ([#209](https://github.com/mpytools/mplotutils/pull/209)). - Increased test coverage ([#180](https://github.com/mpytools/mplotutils/pull/180), [#181](https://github.com/mpytools/mplotutils/pull/181), [#182](https://github.com/mpytools/mplotutils/pull/182), [#207](https://github.com/mpytools/mplotutils/pull/207), and [#208](https://github.com/mpytools/mplotutils/pull/208),). From 63851466a3bdc5aea081341d34e1baea1df6c46f Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Fri, 27 Mar 2026 14:56:57 +0100 Subject: [PATCH 4/4] use v3.14 for upstream-dev-ci --- .github/workflows/upstream-dev-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upstream-dev-ci.yaml b/.github/workflows/upstream-dev-ci.yaml index 82021f4..d38d533 100644 --- a/.github/workflows/upstream-dev-ci.yaml +++ b/.github/workflows/upstream-dev-ci.yaml @@ -35,7 +35,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.13"] + python-version: ["3.14"] steps: - uses: actions/checkout@v6 with: