We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5444ef commit 6b86c86Copy full SHA for 6b86c86
1 file changed
.github/workflows/base.yml
@@ -60,6 +60,7 @@ jobs:
60
uses: actions/checkout@v4.1.1
61
62
- name: Install python ${{ matrix.nox_session.python }} for tests
63
+ if: not contains(fromJson('["3.13"]'), matrix.nox_session.python )
64
uses: MatteoH2O1999/setup-python@v3.2.1 # actions/setup-python@v5.0.0
65
id: set-py
66
with:
@@ -68,6 +69,16 @@ jobs:
68
69
allow-build: info
70
cache-build: true
71
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
+
82
- name: Install python 3.12 for nox
83
uses: actions/setup-python@v5.0.0
84
0 commit comments