Skip to content

Commit

Permalink
ci(python): only use deadsnakes action for 3.13
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 d10d5ba commit f4be79d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/mrml-python-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: setup python
if: matrix.python-version != '3.13'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

# Use deadsnakes until https://github.com/actions/setup-python/issues/771 is closed
- name: setup python
if: matrix.python-version == '3.13'
uses: deadsnakes/action@v3.2.0
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit f4be79d

Please sign in to comment.