From 7a0778e016759f4d79812f958daa9482506e5f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Tue, 26 Nov 2024 14:05:39 +0000 Subject: [PATCH] Add support for Python 3.13, drop 3.7 and 3.8 --- .github/workflows/python-test.yml | 2 +- README.md | 3 +-- setup.py | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 32b1adf..2007e5c 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 5b25e70..6b7f916 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,11 @@ Python 3+ compatible port of the [configobj](https://pypi.python.org/pypi/configobj/) library. The Github CI/CD Pipeline runs tests on python versions: -- 3.7 -- 3.8 - 3.9 - 3.10 - 3.11 - 3.12 +- 3.13 ## Documentation diff --git a/setup.py b/setup.py index dbb87e9..e6eddfb 100644 --- a/setup.py +++ b/setup.py @@ -81,12 +81,11 @@ 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', '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', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules',