From 173eb5d02ef4e3f3d4906825b81d5862a6ec805b Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Sat, 27 Dec 2025 17:26:24 +0800 Subject: [PATCH] Python 3.14 is not yet supported for Nuitka --- tests/test_nuitka_binary.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_nuitka_binary.py b/tests/test_nuitka_binary.py index 2d8398f..e65e6bf 100644 --- a/tests/test_nuitka_binary.py +++ b/tests/test_nuitka_binary.py @@ -1,4 +1,5 @@ import os +import sys import pytest import subprocess @@ -35,6 +36,11 @@ def test_nuitka_binary(): """ Tests the creation and execution of a Nuitka-compiled binary. """ + + if sys.version_info >= (3, 14): + print("Skipping Nuitka test: Python 3.14 is not yet fully supported by Nuitka.") + return + nuitka_command = [ "python", "-m", "nuitka", "--onefile", "--assume-yes-for-downloads", "--include-data-file=./Whatsapp_Chat_Exporter/whatsapp.html=./Whatsapp_Chat_Exporter/whatsapp.html",