Update supported python versions

... and also bump hacking to avoid conflict in test requirements.

Change-Id: I0d12ca25bea62577120b89f9f910d4dbbd141aed
This commit is contained in:
Takashi Kajinami 2024-01-20 01:21:18 +09:00
parent 0fda055a68
commit 4ca787152e
3 changed files with 8 additions and 12 deletions

View File

@ -6,7 +6,7 @@ description-file =
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/
python-requires = >=3.6
python-requires = >=3.8
classifier =
Topic :: Utilities
Intended Audience :: Developers
@ -14,9 +14,12 @@ classifier =
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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
[files]
packages =

View File

@ -1,8 +1 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
# remove this pyflakes from here once you bump the
# hacking to 3.2.0 or above. hacking 3.2.0 takes
# care of pyflakes version compatibilty.
pyflakes>=2.1.1
hacking>=6.1.0,<6.2.0 # Apache-2.0

View File

@ -1,7 +1,7 @@
[tox]
minversion = 3.1.0
skipsdist = True
envlist = pep8,py36
envlist = pep8,py3
ignore_basepython_conflict = true
[testenv]