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: 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: 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),). 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",