Skip to content

Commit

Permalink
REL: require setuptools >= 19.6
Browse files Browse the repository at this point in the history
to avoid `cython` affecting installation of `psutil` [1, 2, 3].

[1] https://bitbucket.org/pypa/setuptools/issues/488
[2] https://bitbucket.org/pypa/setuptools/issues/309
[3] giampaolo/psutil#723
  • Loading branch information
johnyf committed Jan 25, 2016
1 parent 459c326 commit b6fb778
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
install_requires = [
'astutils >= 0.0.1',
'networkx >= 1.9.1',
'ply >= 3.4']
'ply >= 3.4',
'setuptools >= 19.6']
if sys.version_info.major < 3:
pydot_require = 'pydot >= 1.0.28'
else:
Expand Down

0 comments on commit b6fb778

Please sign in to comment.