diff --git a/README.md b/README.md index 41314d9..5b25e70 100644 --- a/README.md +++ b/README.md @@ -7,13 +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.5 -- 3.6 - 3.7 - 3.8 - 3.9 - 3.10 - 3.11 +- 3.12 ## Documentation diff --git a/setup.py b/setup.py index 71e70b1..9af51c9 100644 --- a/setup.py +++ b/setup.py @@ -85,13 +85,12 @@ 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', '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', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', @@ -114,7 +113,7 @@ py_modules=MODULES, package_dir={'': 'src'}, packages=PACKAGES, - python_requires='>=3.5', + python_requires='>=3.7', classifiers=CLASSIFIERS, keywords=KEYWORDS, license='BSD-3-Clause',