2021-10-15 16:36:45 -07:00
|
|
|
"""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."""
|
2021-09-20 18:39:07 -07:00
|
|
|
|
|
|
|
|
# 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.5',
|
|
|
|
|
'3.6',
|
|
|
|
|
'3.7',
|
2022-07-19 21:32:23 -07:00
|
|
|
'3.8',
|
2021-09-20 18:39:07 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
CONTROLLER_PYTHON_VERSIONS = (
|
|
|
|
|
'3.9',
|
|
|
|
|
'3.10',
|
2022-04-12 14:21:15 -07:00
|
|
|
'3.11',
|
2021-09-20 18:39:07 -07:00
|
|
|
)
|