License adjustments

This commit is contained in:
László Károlyi 2022-11-17 19:53:28 +01:00
parent 86ac6934e9
commit 32c8f4cdfa
Signed by: karolyi
GPG Key ID: 2DCAF25E55735BFE
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
1.0.9:
- License adjustments, help on installing directly from repository
1.0.8:
- Fix backward compatibility for python<=3.7: https://gitea.ksol.io/karolyi/py3-validate-email/issues/98

View File

@ -9,9 +9,9 @@ This module is for Python 3.6 and above!
## INSTALLATION
You can install the package with pip:
Pypi removed newer versions due to license issues. You can install the packages right out from gitea, by keeping tags specified as versions. E.g. for version 1.0.9, you should use the following `pip install` syntax:
python -m pip install py3-validate-email
python -m pip install git+https://gitea.ksol.io/karolyi/py3-validate-email@v1.0.9
## USAGE

View File

@ -57,7 +57,7 @@ class BuildPyCommand(build_py):
setup(
name='py3-validate-email',
version='1.0.8',
version='1.0.9',
packages=find_packages(exclude=['tests']),
install_requires=[
'dnspython~=2.2', 'idna~=3.3', 'filelock~=3.7',