summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2018-01-16 13:01:07 +0100
committerGitHub <noreply@github.com>2018-01-16 13:01:07 +0100
commitebb99789d72f6c7f98f20d20623029ae66db7da8 (patch)
tree2d130974ce36e506089d6e8512e84735541f39b6 /setup.py
parent1345d715c40fc9c4c979bbef576b1eda4aff387e (diff)
parentdf3395ab1db3957e71c5a9701f0d3bb622faf16f (diff)
downloadpython-json-pointer-ebb99789d72f6c7f98f20d20623029ae66db7da8.tar.gz
Merge pull request #28 from hugovk/rm-eol
Drop support for EOL Python 2.6 and 3.3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index f5e850c..21660f5 100644
--- a/setup.py
+++ b/setup.py
@@ -42,10 +42,8 @@ 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',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
@@ -66,4 +64,5 @@ setup(name=PACKAGE,
py_modules=MODULES,
scripts=['bin/jsonpointer'],
classifiers=CLASSIFIERS,
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
)