diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 39d9689..81b8f9e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/README.md b/README.md index 12404bc..0f0f506 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index 919d34c..ab2cbee 100644 --- a/setup.py +++ b/setup.py @@ -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',