diff --git a/src/python_compile/assets/debian-dockerfile b/src/python_compile/assets/debian-dockerfile index 55bbaf3..7256dcc 100644 --- a/src/python_compile/assets/debian-dockerfile +++ b/src/python_compile/assets/debian-dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \ dos2unix \ patchelf \ && rm -rf /var/lib/apt/lists/* \ - && pip install --no-cache-dir nuitka==2.1.3 wheel + && pip install --no-cache-dir nuitka==2.5.9 wheel # install gzip RUN apt-get update && apt-get install -y \ diff --git a/src/python_compile/assets/ubuntu22-dockerfile b/src/python_compile/assets/ubuntu22-dockerfile index 7bb29d6..c86f85c 100644 --- a/src/python_compile/assets/ubuntu22-dockerfile +++ b/src/python_compile/assets/ubuntu22-dockerfile @@ -10,7 +10,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ patchelf \ gzip \ && rm -rf /var/lib/apt/lists/* \ - && python3.10 -m pip install --no-cache-dir nuitka==2.1.3 wheel + && python3.10 -m pip install --no-cache-dir nuitka==2.5.9 wheel # Set the working directory in the container WORKDIR /host_dir diff --git a/src/python_compile/native_build.py b/src/python_compile/native_build.py index ae139c1..88aadf0 100644 --- a/src/python_compile/native_build.py +++ b/src/python_compile/native_build.py @@ -15,7 +15,7 @@ REQUIREMENTS = [ "wheel", - "nuitka==2.1.3", + "nuitka==2.5.9", "zstandard==0.23.0", "chardet==5.2.0", "ordered-set==4.1.0",