Skip to content

Commit 0fe93e5

Browse files
committed
Use six
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent b642758 commit 0fe93e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pip install setuptools
66

77
if [[ $RUN == nosetests ]]; then
88
# core dependencies
9-
pip install pygments requests 'curtsies >=0.1.17,<0.2.0' greenlet
9+
pip install pygments requests 'curtsies >=0.1.17,<0.2.0' greenlet six
1010
# filewatch specific dependencies
1111
pip install watchdog
1212
# jedi specific dependencies

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ def initialize_options(self):
169169
'pygments',
170170
'requests',
171171
'curtsies >=0.1.17, <0.2.0',
172-
'greenlet'
172+
'greenlet',
173+
'six'
173174
]
174175

175176
extras_require = {

0 commit comments

Comments
 (0)