Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.12.5 #100

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docker-image-linux-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-slim-bookworm
build-args: PYTHON_VERSION=3.12.5-slim-bookworm
tags: |
${{ steps.meta.outputs.tags }}-slim
${{ steps.meta.outputs.tags }}-slim-bookworm
Expand All @@ -105,7 +105,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-slim-bullseye
build-args: PYTHON_VERSION=3.12.5-slim-bullseye
tags: |
${{ steps.meta.outputs.tags }}-slim-bullseye
labels: |
Expand All @@ -128,7 +128,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-bookworm
build-args: PYTHON_VERSION=3.12.5-bookworm
tags: |
${{ steps.meta.outputs.tags }}
${{ steps.meta.outputs.tags }}-bookworm
Expand All @@ -153,7 +153,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-bullseye
build-args: PYTHON_VERSION=3.12.5-bullseye
tags: |
${{ steps.meta.outputs.tags }}-bullseye
labels: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-image-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-slim-bookworm
build-args: PYTHON_VERSION=3.12.5-slim-bookworm
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-bookworm
Expand All @@ -55,7 +55,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-slim-bullseye
build-args: PYTHON_VERSION=3.12.5-slim-bullseye
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-bullseye

Expand All @@ -72,7 +72,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-bookworm
build-args: PYTHON_VERSION=3.12.5-bookworm
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-bookworm
Expand All @@ -91,6 +91,6 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.12.4-bullseye
build-args: PYTHON_VERSION=3.12.5-bullseye
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-bullseye
2 changes: 1 addition & 1 deletion Dockerfile-py3-linux
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.12.4
ARG PYTHON_VERSION=3.12.5
FROM python:${PYTHON_VERSION}
SHELL ["/bin/bash", "-i", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-py3-linux-slim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.12.4-slim
ARG PYTHON_VERSION=3.12.5-slim
FROM python:${PYTHON_VERSION}
SHELL ["/bin/bash", "-i", "-c"]

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile-py3-windows
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
ENV DEBIAN_FRONTEND=noninteractive

ARG WINE_VERSION=winehq-devel
ARG PYTHON_VERSION=3.12.4

ARG PYTHON_VERSION=3.12.5
ARG PYINSTALLER_VERSION=6.10.0

# we need wine for this all to work, so we'll use the PPA
Expand Down Expand Up @@ -69,7 +70,7 @@
ENV W_DRIVE_C=/wine/drive_c
ENV W_WINDIR_UNIX="$W_DRIVE_C/windows"
ENV W_SYSTEM64_DLLS="$W_WINDIR_UNIX/system32"
ENV W_TMP="$W_DRIVE_C/windows/temp/_$0"

Check warning on line 73 in Dockerfile-py3-windows

View workflow job for this annotation

GitHub Actions / build

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$0' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# install Microsoft Visual C++ Redistributable for Visual Studio 2017 dll files
RUN set -x \
Expand Down