Skip to content

Commit 22414df

Browse files
authored
Refactor publish workflow to use hatchling
1 parent 37e7257 commit 22414df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
uses: actions/setup-python@v6
1818
with:
1919
python-version: 3.9
20-
- name: Install build dependencies with pinned setuptools
20+
- name: Install build dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
python -m pip install "setuptools<82" build wheel --user
23+
python -m pip install hatchling build --user
2424
- name: Build a binary wheel and a source tarball
2525
run: |
26-
python -m build --no-isolation --sdist --wheel --outdir dist/ .
26+
python -m build --sdist --wheel --outdir dist/ .
2727
- name: Publish distribution to PyPI
2828
uses: pypa/gh-action-pypi-publish@release/v1
2929
with:

0 commit comments

Comments
 (0)