Bumping version, unpinning requirements

This commit is contained in:
László Károlyi 2019-05-03 18:52:35 +02:00
parent 0b6117a03b
commit 39c8c27aa6
Signed by: karolyi
GPG Key ID: 2DCAF25E55735BFE
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
0.1.8:
- Added IDNA domain handling.
0.1.7:
- Handle the SMTPServerDisconnected exception throughout all the SMTP
connection. Try to contact all MXes for a successful probe.

View File

@ -26,9 +26,9 @@ class PostBuildPyCommand(build_py):
setup(
name='py3-validate-email',
version='0.1.7',
version='0.1.8',
packages=find_packages(exclude=['tests']),
install_requires=['dnspython==1.16.0', 'idna==2.8'],
install_requires=['dnspython>=1.16.0', 'idna>=2.8'],
author='László Károlyi',
author_email='laszlo@karolyi.hu',
description='Email validator with regex and SMTP checking.',