From 7e263cc0d24db7ad45729cf0a5c8044a54de4dea Mon Sep 17 00:00:00 2001 From: Ralph Seichter Date: Sat, 9 Mar 2024 10:23:58 +0100 Subject: [PATCH] Filter out Python unit tests Don't include unit tests in the binary package being built. --- CHANGELOG.rst | 4 ++++ docs/fangfrisch.adoc | 2 +- fangfrisch/__init__.py | 2 +- setup.cfg | 7 ++++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 14ba5c7..56a12b2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,10 @@ Changelog ========= +Release 1.9.1 (TBA) + +- Filter out Python unit tests during packaging. + Release 1.9.0 (2024-03-08) - The logic for on_update* has been largely rewritten. As a user-visible side effect, detailed diff --git a/docs/fangfrisch.adoc b/docs/fangfrisch.adoc index 664ea97..0efcfc5 100644 --- a/docs/fangfrisch.adoc +++ b/docs/fangfrisch.adoc @@ -1,6 +1,6 @@ # Fangfrisch Ralph Seichter -v1.9.0, {docdate} +v1.9.1.dev1, {docdate} :copyright: © 2020-2024 Ralph Seichter :encoding: UTF-8 :hyphens: en diff --git a/fangfrisch/__init__.py b/fangfrisch/__init__.py index 3fcc0cc..e429cf4 100644 --- a/fangfrisch/__init__.py +++ b/fangfrisch/__init__.py @@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License along with Fangfrisch. If not, see . """ -__version__ = '1.9.0' +__version__ = '1.9.1.dev1' class ClamavItem: diff --git a/setup.cfg b/setup.cfg index 013b99a..e118de2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -43,7 +43,12 @@ project_urls = Source = https://github.com/rseichter/fangfrisch Tracker = https://github.com/rseichter/fangfrisch/issues url = https://github.com/rseichter/fangfrisch -version = 1.9.0 +version = 1.9.1.dev1 + +[options.packages.find] +exclude = + tests + tests.* [options] install_requires =