diff options
author | Erik Skultety <eskultet@redhat.com> | 2023-03-10 10:56:09 +0100 |
---|---|---|
committer | Erik Skultety <eskultet@redhat.com> | 2023-03-14 09:27:07 +0100 |
commit | a290d3eac4c9d63637b5daae9ca4b179a31890f3 (patch) | |
tree | d527bcccc8ed458b8b6281d0c2a9f258305659b6 | |
parent | c0a30d7b1b7d9fd2d1d13680032ca94f9dc35222 (diff) | |
download | libvirt-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.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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, |