File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,12 @@ def main():
46
46
install_requires = ['py>=1.4.33' , 'setuptools' ] # pluggy is vendored in _pytest.vendored_packages
47
47
extras_require = {}
48
48
if has_environment_marker_support ():
49
- extras_require [':python_version=="2.6"' ] = ['argparse' ]
49
+ extras_require [':python_version=="2.6"' ] = ['argparse' , 'ordereddict' ]
50
50
extras_require [':sys_platform=="win32"' ] = ['colorama' ]
51
51
else :
52
52
if sys .version_info < (2 , 7 ):
53
53
install_requires .append ('argparse' )
54
+ install_requires .append ('ordereddict' )
54
55
if sys .platform == 'win32' :
55
56
install_requires .append ('colorama' )
56
57
Original file line number Diff line number Diff line change 34
34
hypothesis<3.0
35
35
nose
36
36
mock<1.1
37
- ordereddict
38
37
39
38
[testenv:py27-subprocess]
40
39
changedir = .
You can’t perform that action at this time.
0 commit comments