Skip to content

Commit

Permalink
Use python -m build for building dist of package (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgy8 authored Jan 13, 2025
1 parent 9c19879 commit 809f136
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 @@ -12,13 +12,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.13"

- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel
run: python -m pip install --upgrade pip build

- name: Build dist packages
run: python setup.py sdist bdist_wheel
run: python -m build

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

0 comments on commit 809f136

Please sign in to comment.