test: lower python version to 3.12 due to nuitka compiling issues

This commit is contained in:
2025-12-03 11:19:29 +01:00
parent 1e320d68c9
commit 67f967aa09
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ jobs:
& $env:UV_PATH self update & $env:UV_PATH self update
$version = "3.13" $version = "3.12"
Write-Host "Checking for Python $version via uv..." Write-Host "Checking for Python $version via uv..."
$exists = & $env:UV_PATH python list | Select-String $version -Quiet $exists = & $env:UV_PATH python list | Select-String $version -Quiet
@@ -196,7 +196,7 @@ jobs:
- name: Build Windows release with Nuitka - name: Build Windows release with Nuitka
shell: powershell shell: powershell
run: | run: |
& $env:UV_PATH run --python 3.13 python -m nuitka ` & $env:UV_PATH run --python 3.12 python -m nuitka `
--standalone ` --standalone `
--assume-yes-for-downloads ` --assume-yes-for-downloads `
--output-dir=dist ` --output-dir=dist `

View File

@@ -3,7 +3,7 @@ name = "semesterapparatsmanager"
version = "1.0.2" version = "1.0.2"
description = "Add your description here" description = "Add your description here"
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.12"
dependencies = [ dependencies = [
"appdirs>=1.4.4", "appdirs>=1.4.4",
"beautifulsoup4>=4.13.5", "beautifulsoup4>=4.13.5",