Skip to content

Commit

Permalink
ci: add python 3.10, 3.12 and 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrocas committed Dec 19, 2024
1 parent c76b5ca commit 3e5d756
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,25 @@ jobs:
build_wheel_and_sdist:
name: Build wheel
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install build
- name: Build wheel and sdist
run: python3 -m build
run: python -m build
- uses: actions/upload-artifact@v4
with:
name: artifact
path: dist/numbat*.whl
- uses: actions/upload-artifact@v4
with:
name: artifact
path: dist/*.tar.gz
path: |
dist/numbat*.whl
dist/*.tar.gz
upload_pypi:
needs: build_wheel_and_sdist
Expand Down

0 comments on commit 3e5d756

Please sign in to comment.