Skip to content

Commit

Permalink
Fix wheel build script to actually use Py3.10 (and not Py3.1).
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jan 8, 2024
1 parent 432ac81 commit c74dcfa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v3
with:
python-version: 3.10
python-version: "3.10"

- name: Install build requirements
run: python -m pip install wheel

- name: Build package
run: python setup.py sdist bdist_wheel

- name: Publish package
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit c74dcfa

Please sign in to comment.