diff options
author | Stefan Kögl <stefan@skoegl.net> | 2017-10-21 10:40:13 +0200 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2017-10-21 10:44:59 +0200 |
commit | 7079bdc7bf4be53f51fa30d790c32db83dd8c210 (patch) | |
tree | aed196232a285f0f0f925cf4618212b7e35b39d2 /setup.py | |
parent | 4351804bc88254fe2ae9dccf4d081e25f3a266f9 (diff) | |
download | python-json-patch-7079bdc7bf4be53f51fa30d790c32db83dd8c210.tar.gz |
Remove support for Python 2.6
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -23,17 +23,12 @@ MODULES = ( ) REQUIREMENTS = list(open('requirements.txt')) -if sys.version_info < (2, 6): - REQUIREMENTS += ['simplejson'] if has_setuptools: OPTIONS = { 'install_requires': REQUIREMENTS } else: - if sys.version_info < (2, 6): - warnings.warn('No setuptools installed. Be sure that you have ' - 'json or simplejson package installed') OPTIONS = {} AUTHOR_EMAIL = metadata['author'] @@ -61,7 +56,6 @@ CLASSIFIERS = [ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', |