Skip to content

Commit

Permalink
fix(build): Revert bdist_wheel release
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Oct 21, 2022
1 parent b74b61b commit 6837e8e
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/release.yml
Expand Up @@ -15,25 +15,18 @@ permissions:
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
python_version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version }}
python-version: "3.10"
- name: Install dependencies
run: |
pip install -U pip wheel
pip install -U pip
- name: Build package
run: python setup.py sdist bdist_wheel
run: python setup.py sdist
- name: Publish a Python distribution to PyPI
if: github.event_name != 'pull_request'
uses: pypa/gh-action-pypi-publish@v1.5.1
Expand Down

0 comments on commit 6837e8e

Please sign in to comment.