mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-04-25 07:21:36 +00:00
Python 3.14 is not yet supported for Nuitka
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import pytest
|
import pytest
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
@@ -35,6 +36,11 @@ def test_nuitka_binary():
|
|||||||
"""
|
"""
|
||||||
Tests the creation and execution of a Nuitka-compiled 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 = [
|
nuitka_command = [
|
||||||
"python", "-m", "nuitka", "--onefile", "--assume-yes-for-downloads",
|
"python", "-m", "nuitka", "--onefile", "--assume-yes-for-downloads",
|
||||||
"--include-data-file=./Whatsapp_Chat_Exporter/whatsapp.html=./Whatsapp_Chat_Exporter/whatsapp.html",
|
"--include-data-file=./Whatsapp_Chat_Exporter/whatsapp.html=./Whatsapp_Chat_Exporter/whatsapp.html",
|
||||||
|
|||||||
Reference in New Issue
Block a user