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