We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b34e8a commit 2c7a33cCopy full SHA for 2c7a33c
3 files changed
.travis.yml
@@ -1,6 +1,7 @@
1
language: python
2
sudo: false
3
python:
4
+- '2.6'
5
- '2.7'
6
- '3.3'
7
- '3.4'
dotenv.py
@@ -2,7 +2,10 @@
import os
import warnings
-from collections import OrderedDict
+try:
+ from collections import OrderedDict
+except ImportError:
8
+ from ordereddict import OrderedDict
9
10
import click
11
setup.py
@@ -15,6 +15,7 @@
15
py_modules=['dotenv'],
16
install_requires=[
17
'click>=5.0',
18
+ 'ordereddict'
19
],
20
entry_points='''
21
[console_scripts]
0 commit comments