Skip to content

Commit be71e9e

Browse files
CompileHowto updated
Python on Windows updated
1 parent 130e8e0 commit be71e9e

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
windows:
3131
name: ${{ matrix.os.description }}
3232
runs-on: ${{ matrix.os.architecture == 'arm64' && 'windows-11-arm' || 'windows-2022' }}
33-
env:
34-
LIBJPEG_TURBO_VERSION: 3.1.0
3533
strategy:
3634
fail-fast: false
3735
matrix:
@@ -59,7 +57,7 @@ jobs:
5957
- name: 📥 Install Python
6058
uses: actions/setup-python@v5
6159
with:
62-
python-version: '3.13.3'
60+
python-version: '3.13.5'
6361
architecture: ${{ matrix.os.architecture }}
6462

6563
- name: 📥 Install Qt

doc/development/CompileHowto.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,17 @@ We assume a 64bit Windows 11. Install the following:
142142
- and latest `Windows 11 SDK`.
143143
- Everything else is not needed.
144144
- [Win64 OpenSSL](https://slproweb.com/products/Win32OpenSSL.html)
145-
- [x64 direct link](https://slproweb.com/download/Win64OpenSSL-3_5_0.exe)
146-
- [ARM64 direct link](https://slproweb.com/download/Win64ARMOpenSSL-3_5_0.exe)
145+
- for x64 architecture: [direct link](https://slproweb.com/download/Win64OpenSSL-3_5_1.exe)
146+
- for ARM64 architecture: [direct link](https://slproweb.com/download/Win64ARMOpenSSL-3_5_1.exe)
147147
- [Python 3 Windows installer (64-bit or ARM64)](https://www.python.org/downloads/windows/) (Check: Add to PATH and Debug Symbols)
148148
- Open a console window and execute `pip install aqtinstall`.
149149
- Now we can download Qt to _C:\Qt_:
150150
- for x64 architecture: `mkdir c:\Qt && aqt install-qt -O c:\Qt windows desktop 6.8.3 win64_msvc2022_64 -m qtserialport qtwebsockets`
151151
- for ARM64 architecture: `mkdir c:\Qt && aqt install-qt -O c:\Qt windows_arm64 desktop 6.8.3 win64_msvc2022_arm64 -m qtserialport qtwebsockets`
152-
- [libjpeg-turbo SDK for Visual C++](https://sourceforge.net/projects/libjpeg-turbo/files/)
153-
- Download the latest 64bit installer (currently `libjpeg-turbo-3.0.1-vc64.exe`) and install to its default location `C:\libjpeg-turbo64`.
152+
- [libjpeg-turbo SDK for Visual C++](https://github.com/libjpeg-turbo/libjpeg-turbo)
153+
- Download the latest installer and install to its default location `C:\libjpeg-turbo64`:
154+
- for x64 architecture: [direct link](https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.1/libjpeg-turbo-3.1.1-vc-x64.exe)
155+
- for ARM64 architecture: [direct link](https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.1/libjpeg-turbo-3.1.1-vc-arm64.exe)
154156

155157
### Optional:
156158
- For package creation:
@@ -253,5 +255,3 @@ sudo cmake --build . --target install/strip
253255
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/home/pi/apps ..
254256
```
255257
This will install to ``/home/pi/apps/share/hyperion``
256-
257-

0 commit comments

Comments
 (0)