diff options
author | Christian Heimes <christian@python.org> | 2021-01-12 19:52:24 +0100 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2021-03-04 11:26:20 +0100 |
commit | 2be0182d145d086306435f30ab997711bb5b3fb1 (patch) | |
tree | 5b4bcfa8bf07ebb3d6b198915c873f7bbe02f81b /setup.py | |
parent | 06d7ab2c5c19472a8cc7d5184a264873cb8fa972 (diff) | |
download | defusedxml-git-2be0182d145d086306435f30ab997711bb5b3fb1.tar.gz |
Drop Python 2 support
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,5 +1,4 @@ #!/usr/bin/env python -from __future__ import absolute_import import sys from distutils.core import Command import subprocess @@ -52,15 +51,12 @@ setup( "License :: OSI Approved :: Python Software Foundation License", "Natural Language :: English", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Text Processing :: Markup :: XML", ], - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", + python_requires=">=3.6", ) |