diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fc7258da..9cb46a9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,11 +81,11 @@ jobs: with: python-version: "3.9" - - name: "Install pep517 and twine" - run: "python -m pip install pep517 twine" + - name: "Install build and twine" + run: "python -m pip install build twine" - name: "Build package" - run: "python -m pep517.build --source --binary ." + run: "python -m build" - name: "List result" run: "ls -l dist" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d35ee036..26742793 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,6 +22,7 @@ Added ~~~~~ - Support Python 3.14, and test against PyPy 3.10 and 3.11 by @kurtmckee in `#1104 `__ +- Development: Migrate to ``build`` to test package building in CI by @kurtmckee in `#1108 `__ - Docs: Standardize CHANGELOG links to PRs by @kurtmckee in `#1110 `__ - Docs: Add example of using leeway with nbf by @djw8605 in `#1034 `__ - Docs: Refactored docs with ``autodoc``; added ``PyJWS`` and ``jwt.algorithms`` docs by @pachewise in `#1045 `__