Skip to content

Commit

Permalink
Add jinja2 version constraint.
Browse files Browse the repository at this point in the history
We're not yet compatible with jinja2-2.9 so help out people using pip to
install to get a working installation.

(cherry picked from commit 06ed25e)
  • Loading branch information
abadger committed Jan 12, 2017
1 parent b5daf22 commit 6c65705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -22,7 +22,7 @@
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={
Expand Down

0 comments on commit 6c65705

Please sign in to comment.