Skip to content

Commit

Permalink
ci(python): use dadsnakes action and python 3.13 for release action
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
  • Loading branch information
jdrouet committed Dec 26, 2024
1 parent 9885878 commit d10d5ba
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/mrml-python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ jobs:
manylinux: "auto"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
# Use deadsnakes until https://github.com/actions/setup-python/issues/771 is closed
- name: setup python
uses: deadsnakes/action@v3.2.0
with:
python-version: "3.13"
nogil: true"
- name: build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -61,9 +64,12 @@ jobs:
target: [x64, x86]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
# Use deadsnakes until https://github.com/actions/setup-python/issues/771 is closed
- name: setup python
uses: deadsnakes/action@v3.2.0
with:
python-version: "3.13"
nogil: true"
architecture: ${{ matrix.target }}
- name: build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -85,9 +91,12 @@ jobs:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
# Use deadsnakes until https://github.com/actions/setup-python/issues/771 is closed
- name: setup python
uses: deadsnakes/action@v3.2.0
with:
python-version: "3.13"
nogil: true"
- name: build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit d10d5ba

Please sign in to comment.