Skip to content

Commit 04e0eef

Browse files
committed
Remove bits of support for Python < 2.6
1 parent f330318 commit 04e0eef

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616
has_setuptools = False
1717

1818

19-
requirements = []
20-
if sys.version_info < (2, 6):
21-
requirements += ['simplejson']
22-
23-
2419
# Build setuptools-specific options (if installed).
2520
if not has_setuptools:
2621
print("WARNING: setuptools/distribute not available. Console scripts will not be installed.")
@@ -35,7 +30,7 @@
3530
'couchdb-replicate = couchdb.tools.replicate:main',
3631
],
3732
},
38-
'install_requires': requirements,
33+
'install_requires': [],
3934
'test_suite': 'couchdb.tests.__main__.suite',
4035
'zip_safe': True,
4136
}

0 commit comments

Comments
 (0)