From f218bcd9dcb45284028dfc7fd9f3c523999bdd35 Mon Sep 17 00:00:00 2001 From: thorbjoernl <51087536+thorbjoernl@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:32:45 +0100 Subject: [PATCH 1/2] Test for Python 3.13 --- .github/workflows/CI.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2ffed779a..90d131eca 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] experimental: [false] os: [ubuntu-22.04] #include: diff --git a/pyproject.toml b/pyproject.toml index c9abc2fc3..09525fede 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Operating System :: OS Independent", "Development Status :: 3 - Alpha", @@ -197,7 +198,7 @@ max-line-length = 99 [tool.tox] legacy_tox_ini = """ [tox] -envlist = py310, py311, py312, lint, type-check, docs, build +envlist = py310, py311, py312, py313, lint, type-check, docs, build skip_missing_interpreters = True isolated_build = True requires = From c30880f476e420edab2aab939bac7fc9dc4e488c Mon Sep 17 00:00:00 2001 From: thorbjoernl <51087536+thorbjoernl@users.noreply.github.com> Date: Tue, 10 Dec 2024 16:17:21 +0100 Subject: [PATCH 2/2] Remove testing for 3.11 https://github.com/metno/pyaerocom/issues/1436#issuecomment-2531954690 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 90d131eca..e4514c567 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.12', '3.13'] experimental: [false] os: [ubuntu-22.04] #include: