Skip to content

Commit

Permalink
Add support for python 3.13 (#20)
Browse files Browse the repository at this point in the history
* Explicitly set the versions of python that are supported
* add 3.13 to windows image
  • Loading branch information
davidjmeyer authored Oct 27, 2024
1 parent a68aeba commit 7450b2c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
args: --release --out dist --interpreter 3.8 3.9 3.10 3.11 3.12 3.13
sccache: 'true'
manylinux: auto
before-script-linux: |
Expand Down Expand Up @@ -103,13 +103,15 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: |
3.x
3.13
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
args: --release --out dist --interpreter 3.8 3.9 3.10 3.11 3.12 3.13
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -135,7 +137,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
args: --release --out dist --interpreter 3.8 3.9 3.10 3.11 3.12 3.13
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 7450b2c

Please sign in to comment.