From 8a300471991d3b2056e4d5248fbd4cf0286e2150 Mon Sep 17 00:00:00 2001 From: skelmis Date: Sun, 15 Jun 2025 16:07:22 +1200 Subject: [PATCH] fix: hatch builds ignoring the built in docx files --- .gitignore | 4 ---- pyproject.toml | 2 +- src/skelmis/docx/__init__.py | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 57dad88..f520230 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,4 @@ uv.lock .python-version !src/docx/templates/default.docx -test.py -cat.jpeg -*.docx -*.pdf test_functionality \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8ad0c79..77746b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "skelmis-docx" -version = "2.2.1" +version = "2.2.2" description = "Create, read, and update Microsoft Word .docx files." authors = [{ name = "Skelmis", email = "skelmis.craft@gmail.com" }] requires-python = ">=3.10" diff --git a/src/skelmis/docx/__init__.py b/src/skelmis/docx/__init__.py index ce02ca2..dda41a5 100644 --- a/src/skelmis/docx/__init__.py +++ b/src/skelmis/docx/__init__.py @@ -13,7 +13,7 @@ if TYPE_CHECKING: from skelmis.docx.opc.part import Part -__version__ = "2.2.1" +__version__ = "2.2.2" __all__ = ["Document"]