Skip to content

Commit fa4b840

Browse files
andrewgy8m000
authored andcommitted
Use python -m build for building dist of package (Bogdanp#179)
1 parent 2f1318b commit fa4b840

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.13"
1616

1717
- name: Install dependencies
18-
run: python -m pip install --upgrade pip setuptools wheel
18+
run: python -m pip install --upgrade pip build
1919

2020
- name: Build dist packages
21-
run: python setup.py sdist bdist_wheel
21+
run: python -m build
2222

2323
- name: Upload packages to PyPI
2424
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)