Skip to content

Commit

Permalink
use build
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Mar 14, 2024
1 parent 316c66a commit dfe8f2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install wheel
python -m pip install build setuptools
- name: Build a binary wheel and a source tarball
run: |
python setup.py sdist bdist_wheel
python -m build --sdist --wheel .
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
4 changes: 2 additions & 2 deletions .github/workflows/tag-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install wheel
python -m pip install build setuptools
- name: Build a binary wheel and a source tarball
run: |
python setup.py sdist bdist_wheel
python -m build --sdist --wheel .
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit dfe8f2d

Please sign in to comment.