diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-11-15 13:32:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 13:32:08 -0800 |
commit | 24d2349eb93272eb71a9d6f8a5fc28f2b04881e9 (patch) | |
tree | 708532ac451121ddf0366981242a0fc7ab1afb86 /callback_plugins | |
parent | acdd5e905be2605138143a970899672634492ecf (diff) | |
parent | 13424ed197676c15c4721fd6cecfded4479744c3 (diff) | |
download | openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.gz openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.bz2 openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.xz openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.zip |
Merge pull request #6078 from mtnbikenc/require-ansible-2.4
Automatic merge from submit-queue.
Start requiring Ansible 2.4
We've tested Ansible 2.4 and need to start addressing deprecation warnings. This change will allow us to start migrating away from the `include:` directive as well as make necessary changes for obsolete AWS modules.
Diffstat (limited to 'callback_plugins')
-rw-r--r-- | callback_plugins/aa_version_requirement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/callback_plugins/aa_version_requirement.py b/callback_plugins/aa_version_requirement.py index 9562adb28..110b3d673 100644 --- a/callback_plugins/aa_version_requirement.py +++ b/callback_plugins/aa_version_requirement.py @@ -29,7 +29,7 @@ else: # Set to minimum required Ansible version -REQUIRED_VERSION = '2.3.0.0' +REQUIRED_VERSION = '2.4.0.0' DESCRIPTION = "Supported versions: %s or newer" % REQUIRED_VERSION |