From 32c8f4cdfaba4c7e7fc81405a023c849a9268859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Thu, 17 Nov 2022 19:53:28 +0100 Subject: [PATCH] License adjustments --- CHANGELOG.txt | 3 +++ README.md | 4 ++-- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) 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',