From a290d3eac4c9d63637b5daae9ca4b179a31890f3 Mon Sep 17 00:00:00 2001 From: Erik Skultety Date: Fri, 10 Mar 2023 10:56:09 +0100 Subject: setuptools: Require Python 3.8 or newer We never officially had a minimum Python version that was required for this project, but we always silently assumed 3.6. As 3.6 has now been EOL'd for quite and given that 3.7 will be EOL'd in a few months and because of general availability of 3.8 that's what we'll make our target. Signed-off-by: Erik Skultety --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index d7e6cef..d2b806c 100644 --- a/setup.py +++ b/setup.py @@ -47,8 +47,14 @@ setup( description="libvirt CI guest management tool", keywords="libvirt ci", url="https://libvirt.org", + python_requires=">=3.8", classifiers=[ - "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)" + "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3 :: Only", ], cmdclass={ "clean": CleanCommand, -- cgit v1.1