diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe089ed..00abcb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - name: Build artifact run: | - uv run python -m build + uv build - name: Publish package uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8311dd2..952e410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.28 + +* **Isolate what gets bundled in package** + ## 0.0.27 * **Update repo to us `uv`** diff --git a/pyproject.toml b/pyproject.toml index 250db10..ea7cbdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,3 +79,9 @@ asyncio_mode = "auto" [tool.coverage.report] # TODO: improve this fail_under = 15 + +[tool.hatch.build.targets.wheel] + packages = ["/unstructured_platform_plugins"] + +[tool.hatch.build.targets.sdist] + packages = ["/unstructured_platform_plugins"] diff --git a/unstructured_platform_plugins/__version__.py b/unstructured_platform_plugins/__version__.py index 9106002..3c17069 100644 --- a/unstructured_platform_plugins/__version__.py +++ b/unstructured_platform_plugins/__version__.py @@ -1 +1 @@ -__version__ = "0.0.27" # pragma: no cover +__version__ = "0.0.28" # pragma: no cover