File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 12
12
13
13
__all__ = ('VERSION' , 'Client' , 'get_version' )
14
14
15
- VERSION = '6.2.0 '
15
+ VERSION = '6.2.1 '
16
16
17
17
18
18
def _get_git_revision (path ):
Original file line number Diff line number Diff line change 34
34
f .read ().decode ('utf-8' )).group (1 )))
35
35
36
36
37
- install_requires = [
38
- 'contextlib2' ,
39
- ]
40
-
37
+ # install_requires = [
38
+ # 'contextlib2',
39
+ # ]
40
+ install_requires = []
41
41
unittest2_requires = ['unittest2' ]
42
42
43
43
flask_requires = [
60
60
webpy_tests_requires = []
61
61
62
62
# If it's python3.2 or greater, don't use contextlib backport
63
- if sys .version_info [1 ] >= 2 :
64
- install_requires .remove ('contextlib2' )
63
+ # if sys.version_info[1] >= 2:
64
+ # install_requires.remove('contextlib2')
65
65
66
66
tests_require = [
67
67
'bottle' ,
@@ -124,6 +124,7 @@ def run_tests(self):
124
124
extras_require = {
125
125
'flask' : flask_requires ,
126
126
'tests' : tests_require ,
127
+ ':python_version<"3.2"' : ['contextlib2' ],
127
128
},
128
129
license = 'BSD' ,
129
130
tests_require = tests_require ,
You can’t perform that action at this time.
0 commit comments