From 381331f917dad2adaa94f3c34f257562fc2b1c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Fri, 24 Jan 2025 12:45:21 +0000 Subject: [PATCH] Drop python 3.7 support, add 3.13 --- .github/workflows/python-test.yml | 2 +- README.md | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 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..1c7c197 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ 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..33a7546 100644 --- a/setup.py +++ b/setup.py @@ -81,12 +81,12 @@ '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', @@ -109,7 +109,7 @@ py_modules=MODULES, package_dir={'': 'src'}, packages=PACKAGES, - python_requires='>=3.7', + python_requires='>=3.8', classifiers=CLASSIFIERS, keywords=KEYWORDS, license='BSD-3-Clause',