We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d92f3 commit a77c23aCopy full SHA for a77c23a
setup.py
@@ -19,8 +19,12 @@
19
20
21
install_requires = ['httplib2 >= 0.7.0', ]
22
-# simplejson is included in the standard library since Python 2.6 as json.
23
-if sys.version_info[:2] < (2, 6):
+
+# simplejson is included in the standard library since Python 2.6 as json
24
+if sys.version_info < (2, 5):
25
+ # 2.1 drops support for 2.4
26
+ install_requires.append('simplejson >= 2.0.9, < 2.1')
27
+elif sys.version_info[:2] < (2, 6):
28
install_requires.append('simplejson >= 2.0.9')
29
30
# dateutil supports python 2.x in dateutil-1, python 3.x in dateutil-2.0 and
0 commit comments