Skip to content

Commit

Permalink
Bump six dependency (fixes #494)
Browse files Browse the repository at this point in the history
from six.moves.X import Y only works with six 1.5 and newer.

Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
  • Loading branch information
sebastinas committed Feb 28, 2015
1 parent 62eccc7 commit 934c5b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ $RUN == nosetests ]]; then
pip install requests
pip install 'curtsies >=0.1.17'
pip install greenlet
pip install 'six >=1.4'
pip install 'six >=1.5'
# filewatch specific dependencies
pip install watchdog
# jedi specific dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def initialize_options(self):
'requests',
'curtsies >=0.1.18',
'greenlet',
'six >=1.4'
'six >=1.5'
]

extras_require = {
Expand Down

0 comments on commit 934c5b6

Please sign in to comment.