Skip to content

Commit 487e0a8

Browse files
committed
Merge branch 'master' into dalework
2 parents 5357951 + ad06e16 commit 487e0a8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build-windows.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
QT_version: 5.15.2
1515
lapack_version: 3.11.0
1616
mingw_version: 810
17+
python_version: 3.13
1718

1819
jobs:
1920
cache-mingw-from-QT:
@@ -28,6 +29,11 @@ jobs:
2829
key: ${{ runner.os }}-mingw${{env.mingw_version}}_64
2930

3031
# all what follows is only run on cache miss
32+
- name: install newer python
33+
if: steps.cache-minGW.outputs.cache-hit != 'true'
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version: ${{env.python_version}}
3137
- name: install aqtinstall tool
3238
if: steps.cache-minGW.outputs.cache-hit != 'true'
3339
run: pip install aqtinstall
@@ -70,6 +76,11 @@ jobs:
7076
path: Tools
7177
key: ${{ runner.os }}-mingw${{env.mingw_version}}_64
7278
fail-on-cache-miss: true
79+
- name: install newer python
80+
if: steps.cache-openCV-QT.outputs.cache-hit != 'true'
81+
uses: actions/setup-python@v5
82+
with:
83+
python-version: ${{env.python_version}}
7384
- name: add minGW to path
7485
if: steps.cache-openCV-QT.outputs.cache-hit != 'true'
7586
shell: bash
@@ -137,6 +148,11 @@ jobs:
137148
- name: extract archive
138149
if: steps.cache-QWT.outputs.cache-hit != 'true'
139150
run: 7z x qwt-${{env.QWT_version}}.zip
151+
- name: install newer python
152+
if: steps.cache-QWT.outputs.cache-hit != 'true'
153+
uses: actions/setup-python@v5
154+
with:
155+
python-version: ${{env.python_version}}
140156
- name: install aqtinstall tool
141157
if: steps.cache-QWT.outputs.cache-hit != 'true'
142158
run: pip install aqtinstall

0 commit comments

Comments
 (0)