From 1c6c740d652d8df4665943a110827ede8c7d9992 Mon Sep 17 00:00:00 2001 From: sethg Date: Sat, 26 Oct 2024 23:47:40 +0200 Subject: [PATCH] Test support on Python 3.12 and 3.13 --- .github/workflows/main.yml | 2 +- setup.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c97998..ef69c78 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", "3.11"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index be5d701..03103db 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,8 @@ def readme(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Intended Audience :: Developers", "Topic :: Scientific/Engineering :: GIS", "Topic :: Text Processing :: Linguistic",