Files
ansible/test/lib/ansible_test/_util/target/common/constants.py
Matt Clay b94ee1cefd Drop Python 2.7 and Python 3.6 support (#81866)
* Drop Python 2.7 and Python 3.6 support

* Remove obsolete _json_compat
2023-10-03 21:52:38 +00:00

18 lines
426 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 annotations
REMOTE_ONLY_PYTHON_VERSIONS = (
'3.7',
'3.8',
'3.9',
)
CONTROLLER_PYTHON_VERSIONS = (
'3.10',
'3.11',
'3.12',
)