Skip to content

Commit 2de4281

Browse files
committed
CI: special case Python 3.11
1 parent 49cf3a7 commit 2de4281

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci-tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,18 @@ jobs:
3535
- uses: actions/checkout@v3
3636

3737
- name: Set up Python
38+
if: matrix.py-ver-minor != 11
3839
uses: actions/setup-python@v4
3940
with:
4041
python-version: ${{ env.py-semver }}
4142

43+
- name: Set up Python 3.11.0-rc.1
44+
if: matrix.py-ver-minor == 11
45+
uses: actions/setup-python@v4
46+
with:
47+
python-version: 3.11.0-rc.1
48+
49+
4250
- name: Cache for pip
4351
uses: actions/cache@v3
4452
with:

0 commit comments

Comments
 (0)