From 79dc667cb0bbf01b987187a5960fee8b43035539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Mon, 21 Nov 2022 17:38:38 +0100 Subject: [PATCH] Release 1.0.10 --- CHANGELOG.txt | 4 ++++ MANIFEST.in | 2 ++ setup.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 81b8f9e..8884fdb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +1.0.10: +- First pypi-free release (they removed everything between 1.0.6 and 1.0.9). +- Removing unnecessary files from the source tarball. + 1.0.9: - License adjustments, help on installing directly from repository diff --git a/MANIFEST.in b/MANIFEST.in index 3f62ef3..57e2f11 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,8 +2,10 @@ include AUTHORS include LICENSE include README.md include CHANGELOG.txt +recursive-exclude .gitea * recursive-exclude tests * recursive-exclude * __pycache__ recursive-exclude * *.pyc recursive-exclude * *.pyo recursive-exclude * *.orig +exclude .gitignore .isort.cfg .travis.yml diff --git a/setup.py b/setup.py index ab2cbee..0dee987 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ class BuildPyCommand(build_py): setup( name='py3-validate-email', - version='1.0.9', + version='1.0.10', packages=find_packages(exclude=['tests']), install_requires=[ 'dnspython~=2.2', 'idna~=3.3', 'filelock~=3.7',