Skip to content

Commit fde6a52

Browse files
committed
Update deployment workflow to use setuptools and wheel for package building
1 parent 3158d9f commit fde6a52

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/python_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ jobs:
7575
- name: Upgrade pip and install build
7676
run: |
7777
python -m pip install --upgrade pip
78-
pip install build
78+
pip install setuptools wheel
7979
- name: Build package for deployment
80-
run: python -m build
80+
run: python setup.py bdist_wheel sdist
8181
- name: Publish distribution 📦 to PyPI
8282
uses: pypa/gh-action-pypi-publish@release/v1
8383
# password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)