From 91e64b29fde750c4ab31bbd09a502972c419540f Mon Sep 17 00:00:00 2001 From: Melbar Date: Fri, 8 May 2026 08:48:09 +0200 Subject: [PATCH] Accept Python 3.14 installs --- README.md | 4 ++-- create_mezzanine.bat | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8540b9b..065d2e0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Wichtig: Das Fenster waehrend des Encodings offen lassen. Am Ende bleibt es steh Hinweis: Auf manchen Windows-Rechnern gibt es den Befehl `py` nicht. Das ist normal. `create_mezzanine.bat` sucht deshalb automatisch nach mehreren Python-Varianten: -1. lokale Python-Installationen wie `Python313`, `Python312`, `Python311`, `Python310` +1. lokale Python-Installationen wie `Python314`, `Python313`, `Python312`, `Python311`, `Python310` 2. `py` 3. `python` 4. `python3` @@ -53,7 +53,7 @@ Wenn nichts davon gefunden wird, zeigt die Batch-Datei eine Installationsmeldung `py` ist ein kleiner Python-Starter fuer Windows. Er hilft, die passende Python-Version zu finden. Fuer dieses Tool ist `py` praktisch, aber nicht zwingend notwendig, weil `create_mezzanine.bat` auch nach `python` und lokalen Python-Installationen sucht. -Einfachster Weg fuer einen neuen Rechner: +Python 3.14 ist fuer dieses Tool in Ordnung. Einfachster Weg fuer einen neuen Rechner: 1. Python fuer Windows von [python.org](https://www.python.org/downloads/windows/) installieren. 2. Im Installer diese Optionen aktivieren: diff --git a/create_mezzanine.bat b/create_mezzanine.bat index 778a417..b6c4550 100644 --- a/create_mezzanine.bat +++ b/create_mezzanine.bat @@ -4,7 +4,7 @@ set "SCRIPT=%~dp0pvd_mezzanine.py" set "PYTHON_EXE=" set "PYTHON_ARGS=" -for %%V in (313 312 311 310) do ( +for %%V in (314 313 312 311 310) do ( if not defined PYTHON_EXE if exist "%LocalAppData%\Programs\Python\Python%%V\python.exe" ( set "PYTHON_EXE=%LocalAppData%\Programs\Python\Python%%V\python.exe" )