diff options
author | Stefan Kögl <stefan@skoegl.net> | 2018-01-16 13:01:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 13:01:07 +0100 |
commit | ebb99789d72f6c7f98f20d20623029ae66db7da8 (patch) | |
tree | 2d130974ce36e506089d6e8512e84735541f39b6 /setup.py | |
parent | 1345d715c40fc9c4c979bbef576b1eda4aff387e (diff) | |
parent | df3395ab1db3957e71c5a9701f0d3bb622faf16f (diff) | |
download | python-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.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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.*', ) |