aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Skultety <eskultet@redhat.com>2023-03-10 10:56:09 +0100
committerErik Skultety <eskultet@redhat.com>2023-03-14 09:27:07 +0100
commita290d3eac4c9d63637b5daae9ca4b179a31890f3 (patch)
treed527bcccc8ed458b8b6281d0c2a9f258305659b6
parentc0a30d7b1b7d9fd2d1d13680032ca94f9dc35222 (diff)
downloadlibvirt-ci-a290d3eac4c9d63637b5daae9ca4b179a31890f3.zip
libvirt-ci-a290d3eac4c9d63637b5daae9ca4b179a31890f3.tar.gz
libvirt-ci-a290d3eac4c9d63637b5daae9ca4b179a31890f3.tar.bz2
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 <eskultet@redhat.com>
-rw-r--r--setup.py8
1 files changed, 7 insertions, 1 deletions
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,