Skip to content

Commit

Permalink
Merge pull request #1108 from VWS-Python/rm-build-dep
Browse files Browse the repository at this point in the history
Use uv instead of 'build' for building
  • Loading branch information
adamtheturtle authored Oct 8, 2024
2 parents ae30bf7 + f2be88c commit f7dea81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
run: |
git fetch --tags
git checkout ${{ steps.tag_version.outputs.new_tag }}
uv run --extra=release python -m build --sdist --wheel --outdir dist/ .
uv run check-wheel-contents dist/*.whl
uv build --sdist --wheel --out-dir dist/
uv run --extra=release check-wheel-contents dist/*.whl
# We use PyPI trusted publishing rather than a PyPI API token.
# See https://github.com/pypa/gh-action-pypi-publish/tree/release/v1/?tab=readme-ov-file#trusted-publishing.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ optional-dependencies.dev = [
]
optional-dependencies.packaging = [
]
optional-dependencies.release = [ "build==1.2.2.post1", "check-wheel-contents==0.6.0" ]
optional-dependencies.release = [ "check-wheel-contents==0.6.0" ]
urls.Source = "https://github.com/VWS-Python/vws-test-fixtures"
entry-points.pytest11.vws_test_fixtures = "vws_test_fixtures.plugin"

Expand Down

0 comments on commit f7dea81

Please sign in to comment.