Files
ansible/test/lib/ansible_test/_util/target/common/constants.py
Sloane Hertel ecbbd7e5d1 Remove Python 3.5 support (#80972)
* Remove Python 3.5 support

* changelog

* add requested changes

* Update changelogs/fragments/remove-python3.5.yml

Co-authored-by: Matt Clay <matt@mystile.com>

* remove Python3 < 3.5 error handling

* remove Python3 < 3.5 error handling in TE too

---------

Co-authored-by: Matt Clay <matt@mystile.com>
2023-06-15 00:05:50 +02:00

20 lines
489 B
Python

"""Constants used by ansible-test's CLI entry point (as well as the rest of ansible-test). Imports should not be used in this file."""
# NOTE: This file resides in the _util/target directory to ensure compatibility with all supported Python versions.
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
REMOTE_ONLY_PYTHON_VERSIONS = (
'2.7',
'3.6',
'3.7',
'3.8',
)
CONTROLLER_PYTHON_VERSIONS = (
'3.9',
'3.10',
'3.11',
)