From 6837e8e69d98fe6702a26ee0a49704231ab83faf Mon Sep 17 00:00:00 2001 From: Guilherme Souza <101073+guilhermef@users.noreply.github.com> Date: Fri, 21 Oct 2022 10:11:41 +0200 Subject: [PATCH] fix(build): Revert bdist_wheel release --- .github/workflows/release.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e236fad87..a221600f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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