diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2020-12-19 18:12:24 +0100 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2020-12-19 18:12:24 +0100 |
commit | b0c840f0b8eabf61dee4b8be2e00a8747ed0f2f0 (patch) | |
tree | 425c0ec94f93ae7cebc8ecfbe99d2ad7f0180904 /lib/ansible/release.py | |
download | debian-ansible-core-b0c840f0b8eabf61dee4b8be2e00a8747ed0f2f0.zip |
New upstream version 2.10.4
Diffstat (limited to 'lib/ansible/release.py')
-rw-r--r-- | lib/ansible/release.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/ansible/release.py b/lib/ansible/release.py new file mode 100644 index 00000000..e15e306e --- /dev/null +++ b/lib/ansible/release.py @@ -0,0 +1,24 @@ +# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> +# +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see <http://www.gnu.org/licenses/>. + +# Make coding more python3-ish +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +__version__ = '2.10.4' +__author__ = 'Ansible, Inc.' +__codename__ = 'When the Levee Breaks' |