Skip to content

Commit

Permalink
Change package build command from setuptools to build
Browse files Browse the repository at this point in the history
  • Loading branch information
aeisenbarth committed Nov 27, 2023
1 parent c0ff7cf commit 3d8e606
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install setuptools wheel twine
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python setup.py sdist bdist_wheel
run: python -m build

- name: Publish package to PyPI
uses: pypa/[email protected]
Expand Down

0 comments on commit 3d8e606

Please sign in to comment.