Skip to content

Commit

Permalink
Fix Ansible version requirement for CentOS6 and 7
Browse files Browse the repository at this point in the history
CentOS 6 and 7 ship with setuptools 0.9.8, which is too old to cope
with the ~= notation; PEP 440 version specifiers were fully implemented
only starting setuptools 8.0.

So let's use a compatible specifier, implemented in terms of
basic version comparison operators.
  • Loading branch information
verdurin authored and riccardomurri committed Jan 21, 2016
1 parent 89958da commit 295c617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def ansible_pb_files():
required_packages = [
'PyCLI',
'paramiko',
'ansible~=1.9.4',
'ansible>=1.9.4, <2.0.0',
'voluptuous>=0.8.2',
'configobj',
'coloredlogs',
Expand Down

0 comments on commit 295c617

Please sign in to comment.