mirror of
https://github.com/ansible/ansible.git
synced 2025-11-30 23:16:08 +07:00
* 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>
20 lines
489 B
Python
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',
|
|
)
|