From f649a87a195bfb7772ae5e35dd81431a79ee095f Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Mon, 16 Jan 2017 11:22:58 -0800 Subject: [PATCH] Remove restriction on maximum jinja2 version as we're hoping the next release will work with jinja2-2.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0eec3da0b2..ef7aa3dad6 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 < 2.9', "PyYAML", 'setuptools', 'pycrypto >= 2.6'], + install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'], package_dir={ '': 'lib' }, packages=find_packages('lib'), package_data={