Drop support of py36 and py37

Change-Id: I16e4c61c8b166d5e128907d79ab6f857f98bd82b
This commit is contained in:
Andrey Kurilin 2023-08-20 11:26:07 +02:00 committed by Andriy Kurilin
parent 8dbd9b426b
commit 0868e5cc55
4 changed files with 14 additions and 14 deletions

View File

@ -3,8 +3,6 @@
jobs:
- rally-tox-cover
- rally-tox-pep8
- rally-tox-py36
- rally-tox-py37
- rally-tox-py38
- rally-tox-py39
- rally-tox-py310
@ -85,8 +83,6 @@
jobs:
- rally-tox-cover
- rally-tox-pep8
- rally-tox-py36
- rally-tox-py37
- rally-tox-py38
- rally-tox-py39
- rally-tox-py310

View File

@ -16,6 +16,13 @@ Changelog
.. Release notes for existing releases are MUTABLE! If there is something that
was missed or can be improved, feel free to change it!
unreleased
----------
Removed
~~~~~~~
Support of Python 3.6 and Python 3.7
[2.3.0] - 2023-08-01
--------------------

View File

@ -7,7 +7,7 @@ author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/rally/latest/
license = Apache License, Version 2.0
python_requires = >=3.6
python_requires = >=3.8
classifier =
Environment :: OpenStack
Intended Audience :: Developers
@ -17,9 +17,9 @@ classifier =
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3 :: Only
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
[files]
packages =

11
tox.ini
View File

@ -1,7 +1,7 @@
[tox]
minversion = 3.1.1
ignore_basepython_conflict = true
envlist = py36,py37,py38,pep8
envlist = py38,py39,py310,pep8
[testenv]
extras = {env:RALLY_EXTRAS:}
@ -40,18 +40,15 @@ skip_install = true
commands = flake8
distribute = false
[testenv:py36]
basepython = python3.6
[testenv:py37]
basepython = python3.7
[testenv:py38]
basepython = python3.8
[testenv:py39]
basepython = python3.9
[testenv:py310]
basepython = python3.10
[testenv:venv]
basepython = python3
commands = {posargs}