Skip to content

Commit 7b83121

Browse files
authored
[ci] Allow Python prerelease versions (#2822)
1 parent 986770f commit 7b83121

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
strategy:
8383
fail-fast: false
8484
matrix:
85-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14-dev"]
85+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
8686
outputs:
8787
python-key: ${{ steps.generate-python-key.outputs.key }}
8888
steps:
@@ -93,6 +93,7 @@ jobs:
9393
uses: actions/[email protected]
9494
with:
9595
python-version: ${{ matrix.python-version }}
96+
allow-prereleases: true
9697
check-latest: true
9798
- name: Install Qt
9899
if: ${{ matrix.python-version == '3.10' }}
@@ -140,7 +141,7 @@ jobs:
140141
strategy:
141142
fail-fast: false
142143
matrix:
143-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14-dev"]
144+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
144145
steps:
145146
- name: Set temp directory
146147
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
@@ -153,6 +154,7 @@ jobs:
153154
uses: actions/[email protected]
154155
with:
155156
python-version: ${{ matrix.python-version }}
157+
allow-prereleases: true
156158
check-latest: true
157159
- name: Generate partial Python venv restore key
158160
id: generate-python-key

0 commit comments

Comments
 (0)