Skip to content

Commit

Permalink
Merge pull request ipython#8798 from minrk/plat-all
Browse files Browse the repository at this point in the history
don't include platform-specific dependencies in ipython[all]
  • Loading branch information
minrk committed Sep 9, 2015
2 parents d446702 + 0f812f2 commit 45110c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,9 @@ def run(self):
install_requires.append('pexpect')

everything = set()
for deps in extras_require.values():
everything.update(deps)
for key, deps in extras_require.items():
if ':' not in key:
everything.update(deps)
extras_require['all'] = everything

if 'setuptools' in sys.modules:
Expand Down

0 comments on commit 45110c6

Please sign in to comment.