Skip to content

Commit

Permalink
fix master's dependencies
Browse files Browse the repository at this point in the history
* Python 2.5 is not supported any more, hence to need to handle that
* 'future' module is required (as it brings in 'builtins' module), while
  it was not mentioned
  • Loading branch information
Mikhail Sobolev committed Aug 2, 2015
1 parent 096ba0a commit 7b47071
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions master/setup.py
Expand Up @@ -385,15 +385,11 @@ def define_plugin_entries(groups):
pass
else:
# dependencies
if sys.version_info[0] == 2 and sys.version_info[1] <= 5:
zi = 'zope.interface >= 3.6.1' # the newest that works on Python 2.5
else:
zi = 'zope.interface >= 4.1.1' # required for tests, but Twisted requires this anyway

setup_args['install_requires'] = [
'twisted >= 11.0.0',
'Jinja2 >= 2.1',
zi,
'zope.interface >= 4.1.1', # required for tests, but Twisted requires this anyway
'future'
]

setup_args['install_requires'] += [
Expand Down

0 comments on commit 7b47071

Please sign in to comment.