Preparing new version, fixes #94

This commit is contained in:
László Károlyi 2022-06-28 19:45:17 +02:00
parent e8646ffe6c
commit 5f406473eb
Signed by: karolyi
GPG Key ID: 2DCAF25E55735BFE
2 changed files with 4 additions and 2 deletions

View File

@ -58,6 +58,8 @@ Basic usage:
`smtp_debug`: activate smtplib's debug output which always goes to stderr; defaults to `False`
`address_types`: The IP address types to use. pass a `frozenset` if you want to change the default `frozenset([IPv6Address, IPv4Address])`. Useful when you only deliver emails through one interface, but you have dual stack. For an explanation, see [this issue](https://gitea.ksol.io/karolyi/py3-validate-email/issues/94)
### Result
The function `validate_email()` returns the following results:

View File

@ -57,9 +57,9 @@ class BuildPyCommand(build_py):
setup(
name='py3-validate-email',
version='1.0.5',
version='1.0.6',
packages=find_packages(exclude=['tests']),
install_requires=['dnspython~=2.1', 'idna~=3.0', 'filelock~=3.0'],
install_requires=['dnspython~=2.2', 'idna~=3.3', 'filelock~=3.7'],
author='László Károlyi',
author_email='laszlo@karolyi.hu',
description=(