From 8178369291653e3ac743f7a1a83519ea0805acb1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 23 Oct 2024 18:43:01 +0200 Subject: [PATCH 1/2] GitHub Actions: Run unit test on Python 3.13 * https://www.python.org/downloads/release/python-3130/ * https://pythoninsider.blogspot.com/2024/10/python-3130-final-released.html * https://devguide.python.org/versions/ --- .github/workflows/unit_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 8e2e186a..cdd264c3 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.12"] #NOTE: min and max Python versions supported by icepyx + python-version: ["3.9", "3.13"] #NOTE: min and max Python versions supported by icepyx steps: - uses: "actions/checkout@v4" From 6e1947026d5237724540902c7a6efa3cdd084451 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 23 Oct 2024 18:49:59 +0200 Subject: [PATCH 2/2] pyproject.toml "Programming Language :: Python :: 3.13", --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index fb4907d3..8a0d7f04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers=[ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: GIS", "Topic :: Software Development :: Libraries",