From 98cbb82f37ce8531a49489c7941b2942b0a4b9a3 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Thu, 14 Aug 2025 08:54:12 +0200 Subject: [PATCH 1/2] test under python 3.13 --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/upstream-dev-ci.yaml | 2 +- CHANGELOG.md | 2 ++ setup.cfg | 1 + 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 645a0c5..fb11208 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.12"] + python-version: ["3.11", "3.13"] env: [""] include: - env: "min-all-deps" python-version: "3.11" os: "ubuntu-latest" - env: "" - python-version: "3.12" + python-version: "3.13" os: "macos-latest" defaults: run: diff --git a/.github/workflows/upstream-dev-ci.yaml b/.github/workflows/upstream-dev-ci.yaml index 18cd253..9cb8242 100644 --- a/.github/workflows/upstream-dev-ci.yaml +++ b/.github/workflows/upstream-dev-ci.yaml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.12"] + python-version: ["3.13"] steps: - uses: actions/checkout@v5 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index ca1b549..51d10ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ### Breaking changes +- Removed support for python 3.10 ([#156](https://github.com/mpytools/mplotutils/pull/156)). + ### Enhancements ### Bug fixes diff --git a/setup.cfg b/setup.cfg index 2103e37..8134814 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] packages = find: From 6dc4b60185094dc1e93c204feda0180ff259e699 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Thu, 14 Aug 2025 08:56:33 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d10ea..b0e64a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ### Enhancements +- Add python 3.13 to list of supported versions ([#158](https://github.com/mpytools/mplotutils/pull/158)). + ### Bug fixes ### Internal changes