Skip to content

Commit 2d2e97b

Browse files
committed
Add ordereddict to install_requires for py26
1 parent 8f6f382 commit 2d2e97b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ def main():
4646
install_requires = ['py>=1.4.33', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
4747
extras_require = {}
4848
if has_environment_marker_support():
49-
extras_require[':python_version=="2.6"'] = ['argparse']
49+
extras_require[':python_version=="2.6"'] = ['argparse', 'ordereddict']
5050
extras_require[':sys_platform=="win32"'] = ['colorama']
5151
else:
5252
if sys.version_info < (2, 7):
5353
install_requires.append('argparse')
54+
install_requires.append('ordereddict')
5455
if sys.platform == 'win32':
5556
install_requires.append('colorama')
5657

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ deps =
3434
hypothesis<3.0
3535
nose
3636
mock<1.1
37-
ordereddict
3837

3938
[testenv:py27-subprocess]
4039
changedir = .

0 commit comments

Comments
 (0)