summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2017-01-12 10:01:29 -0800
committerToshio Kuratomi <a.badger@gmail.com>2017-01-12 10:01:29 -0800
commit06ed25e788a3324214ee3226ca35b5586ee83344 (patch)
tree76f1249dc3dce3d8791e5290676a2a51427574c5
parentb3daa9dd64e972a2f588a0d44a40923079432a28 (diff)
downloadansible-06ed25e788a3324214ee3226ca35b5586ee83344.tar.gz
Add jinja2 version constraint.
We're not yet compatible with jinja2-2.9 so help out people using pip to install to get a working installation.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ef7aa3dad6..0eec3da0b2 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ setup(name='ansible',
license='GPLv3',
# Ansible will also make use of a system copy of python-six if installed but use a
# Bundled copy if it's not.
- install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
+ install_requires=['paramiko', 'jinja2 < 2.9', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
package_dir={ '': 'lib' },
packages=find_packages('lib'),
package_data={