You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/lib/ansible_test/_util/target/common/constants.py

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',
)