From 42fab3e3b0e0524afa48ee6b887215279d5fdc65 Mon Sep 17 00:00:00 2001 From: "c.winger" Date: Sun, 5 Jul 2026 15:05:33 +0200 Subject: [PATCH 1/2] fix build (tool.setuptools.packages.find) --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3445c10..7f37150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,9 @@ docs = [ "pymdown-extensions>=10.16", ] [tool.setuptools.packages.find] -include = ["datatools"] +where = ["."] +include = ["*"] +exclude = ["tests*", "docs*"] [build-system] requires = ["setuptools", "wheel", "build"] From a526553f1e384d406e4de358eb11fdd3a12bad1b Mon Sep 17 00:00:00 2001 From: "c.winger" Date: Sun, 5 Jul 2026 15:05:42 +0200 Subject: [PATCH 2/2] =?UTF-8?q?version:=200.15.1=20=E2=86=92=200.15.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- datatools/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33c8bce..1d520de 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.1 +current_version = 0.15.2 commit = True tag = True message = version: {current_version} → {new_version} diff --git a/datatools/__init__.py b/datatools/__init__.py index 4c2ce40..4fbe46b 100644 --- a/datatools/__init__.py +++ b/datatools/__init__.py @@ -1,6 +1,6 @@ """data processing tools.""" -__version__ = "0.15.1" +__version__ = "0.15.2" __all__ = ["FileDataStorage"] from datatools.storage.file import FileDataStorage diff --git a/pyproject.toml b/pyproject.toml index 7f37150..ed7a5a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "wingechr-datatools" -version = "0.15.1" +version = "0.15.2" description = "TODO" readme = "README.md" requires-python = ">=3.11,<3.14"