Skip to content

Commit cd4fa55

Browse files
Merge pull request #2410 from VWS-Python/rm-build-dep
Use uv instead of 'build' for building
2 parents 745e1f9 + 8ae1432 commit cd4fa55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ jobs:
7777
run: |
7878
git fetch --tags
7979
git checkout ${{ steps.tag_version.outputs.new_tag }}
80-
uv run --extra=release python -m build --sdist --wheel --outdir dist/ .
81-
uv run check-wheel-contents dist/*.whl
80+
uv build --sdist --wheel --out-dir dist/
81+
uv run --extra=release check-wheel-contents dist/*.whl
8282
8383
# We use PyPI trusted publishing rather than a PyPI API token.
8484
# See https://github.com/pypa/gh-action-pypi-publish/tree/release/v1/?tab=readme-ov-file#trusted-publishing.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ optional-dependencies.dev = [
7676
"vws-python-mock==2024.8.30",
7777
"vws-test-fixtures==2023.3.5",
7878
]
79-
optional-dependencies.release = [ "build==1.2.2.post1", "check-wheel-contents==0.6.0" ]
79+
optional-dependencies.release = [ "check-wheel-contents==0.6.0" ]
8080
urls.Documentation = "https://vws-python.readthedocs.io/en/latest/"
8181
urls.Source = "https://github.com/VWS-Python/vws-python"
8282

0 commit comments

Comments
 (0)