Skip to content

Commit b1d1da7

Browse files
committed
Bump six dependency (fixes bpython#494)
from six.moves.X import Y only works with six 1.5 and newer. Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at> (cherry picked from commit 934c5b6)
1 parent 0f81bf8 commit b1d1da7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ $RUN == nosetests ]]; then
1010
pip install requests
1111
pip install 'curtsies >=0.1.17,<0.2.0'
1212
pip install greenlet
13-
pip install 'six >=1.4'
13+
pip install 'six >=1.5'
1414
# filewatch specific dependencies
1515
pip install watchdog
1616
# jedi specific dependencies

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def initialize_options(self):
212212
'requests',
213213
'curtsies >=0.1.18, <0.2.0',
214214
'greenlet',
215-
'six >=1.4'
215+
'six >=1.5'
216216
]
217217

218218
extras_require = {

0 commit comments

Comments
 (0)