Require orderddict for Python 2.6 support.

Change-Id: Ib419baa13b819827517a9cf9851d19a90c8668bb
This commit is contained in:
Ryan Petrello 2015-05-27 13:57:31 -07:00
parent 0dbaa162b7
commit 6b1d0f0002
1 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,10 @@ except:
# a backported replacement for 2.6 through 3.4
#
requirements.append('singledispatch')
try:
from collections import OrderedDict
except:
requirements.append('ordereddict')
tests_require = requirements + [