Bump version to 1.1.1 and document python2 is no longer supported (LP: #2008738)

This commit is contained in:
Scott Kitterman
2023-02-27 23:49:56 -05:00
parent 59e9dd2cb5
commit bf5ab32d55
3 changed files with 15 additions and 15 deletions
+2 -6
View File
@@ -25,15 +25,12 @@ from setuptools import setup
import os
import sys
version = "1.1"
version = "1.1.1"
kw = {} # Work-around for lack of 'or' requires in setuptools.
try:
import DNS
if sys.version_info[0] == 2:
kw['install_requires'] = ['PyDNS']
else:
kw['install_requires'] = ['Py3DNS']
kw['install_requires'] = ['Py3DNS']
except ImportError: # If PyDNS is not installed, prefer dnspython
kw['install_requires'] = ['dnspython>=1.16.0']
@@ -73,7 +70,6 @@ setup(
'License :: DFSG approved',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Communications :: Email :: Filters',