ci: align Python version support to 3.13 only

- Update CI/CD workflows to test only Python 3.13
- Remove Python 3.11 and 3.12 from test matrix
- Update package classifiers to reflect Python 3.13 only support
- Align with requires-python = '>=3.13' constraint
This commit is contained in:
2026-03-26 08:50:17 +01:00
parent d82ea9594f
commit 7e24c3b037
3 changed files with 2 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.11", "3.12", "3.13"] python-version: ["3.13"]
steps: steps:
- name: Checkout code - name: Checkout code

View File

@@ -20,7 +20,7 @@ jobs:
strategy: strategy:
matrix: matrix:
python-version: [3.11, 3.12, 3.13] python-version: [3.13]
steps: steps:
- name: Checkout code - name: Checkout code

View File

@@ -135,8 +135,6 @@ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",