File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 12
12
author_email = 'team@swiftype.com' ,
13
13
url = 'https://swiftype.com/' ,
14
14
packages = find_packages (),
15
- install_requires = ["anyjson" , "future==0.16.0 " ],
15
+ install_requires = ["anyjson" , "six " ],
16
16
test_suite = 'nose.collector' ,
17
17
classifiers = [
18
18
'Intended Audience :: Developers' ,
Original file line number Diff line number Diff line change 1
1
from __future__ import unicode_literals
2
2
3
- from future .standard_library import install_aliases
4
- install_aliases ()
5
-
6
- import anyjson
7
3
import base64
8
4
import time
9
5
import hashlib
10
- from urllib .parse import urlparse , urlunparse , urlencode
6
+
7
+ import anyjson
8
+ from six .moves .urllib_parse import urlunparse , urlencode
11
9
12
10
try :
13
11
# VCRpy only works when `httplib` is imported directly on Python 2.x
Original file line number Diff line number Diff line change 2
2
import os
3
3
import time
4
4
import unittest2 as unittest
5
- from urllib . parse import urlparse , parse_qs
5
+ from six . moves . urllib_parse import urlparse , parse_qs
6
6
import vcr
7
7
from mock import Mock
8
8
You can’t perform that action at this time.
0 commit comments