Skip to content

Commit a43aa42

Browse files
authored
bugfix/omit test files in package data (#48)
1 parent 651ee27 commit a43aa42

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Build artifact
2929
run: |
30-
uv run python -m build
30+
uv build
3131
3232
- name: Publish package
3333
uses: pypa/gh-action-pypi-publish@release/v1

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.28
2+
3+
* **Isolate what gets bundled in package**
4+
15
## 0.0.27
26

37
* **Update repo to us `uv`**

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,9 @@ asyncio_mode = "auto"
7979
[tool.coverage.report]
8080
# TODO: improve this
8181
fail_under = 15
82+
83+
[tool.hatch.build.targets.wheel]
84+
packages = ["/unstructured_platform_plugins"]
85+
86+
[tool.hatch.build.targets.sdist]
87+
packages = ["/unstructured_platform_plugins"]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.27" # pragma: no cover
1+
__version__ = "0.0.28" # pragma: no cover

0 commit comments

Comments
 (0)