Skip to content

Commit 6b86c86

Browse files
author
Sylvain MARIE
committed
Fixed 3.13 session
1 parent b5444ef commit 6b86c86

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/base.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
uses: actions/checkout@v4.1.1
6161

6262
- name: Install python ${{ matrix.nox_session.python }} for tests
63+
if: not contains(fromJson('["3.13"]'), matrix.nox_session.python )
6364
uses: MatteoH2O1999/setup-python@v3.2.1 # actions/setup-python@v5.0.0
6465
id: set-py
6566
with:
@@ -68,6 +69,16 @@ jobs:
6869
allow-build: info
6970
cache-build: true
7071

72+
- name: Install python ${{ matrix.nox_session.python }} for tests (3.13)
73+
if: contains(fromJson('["3.13"]'), matrix.nox_session.python )
74+
uses: actions/setup-python@v5
75+
id: set-py-latest
76+
with:
77+
python-version: ${{ matrix.nox_session.python }}
78+
architecture: x64
79+
allow-build: info
80+
cache-build: true
81+
7182
- name: Install python 3.12 for nox
7283
uses: actions/setup-python@v5.0.0
7384
with:

0 commit comments

Comments
 (0)