Skip to content

Commit

Permalink
chore: update nuitka version to 2.5.9 in dockerfiles and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Dec 29, 2024
1 parent 41b3d2e commit da04e57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/python_compile/assets/debian-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/python_compile/assets/ubuntu22-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/python_compile/native_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit da04e57

Please sign in to comment.