-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from slimta/drop-py2
Drop support for Python 2
- Loading branch information
Showing
76 changed files
with
209 additions
and
1,229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
pytest >= 4 | ||
pytest-cov | ||
pytype | ||
mox3 | ||
pyright | ||
pymox | ||
testfixtures | ||
flake8 | ||
twine | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
license = f.read() | ||
|
||
setup(name='python-slimta', | ||
version='4.2.1', | ||
version='5.0.0', | ||
author='Ian Good', | ||
author_email='[email protected]', | ||
description='Lightweight, asynchronous SMTP libraries.', | ||
|
@@ -40,12 +40,9 @@ | |
packages=find_packages(), | ||
namespace_packages=['slimta'], | ||
install_requires=['gevent >= 1.1rc', | ||
'pysasl >= 0.4.0, < 0.5', | ||
'pycares < 3.0.0; python_version < "3.0"', | ||
'pycares >= 1; python_version >= "3.0"'], | ||
extras_require={'spf': ['pyspf', 'py3dns; python_version >= "3.0"', | ||
'pydns; python_version < "3.0"', | ||
'ipaddr; python_version < "3.0"'], | ||
'pysasl >= 0.5.0', | ||
'pycares >= 1'], | ||
extras_require={'spf': ['pyspf', 'py3dns'], | ||
'redis': ['redis'], | ||
'aws': ['boto'], | ||
'disk': ['pyaio >= 0.4; platform_system == "Linux"']}, | ||
|
@@ -55,7 +52,6 @@ | |
'Intended Audience :: Information Technology', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.