Skip to content

Commit bf18ec8

Browse files
Python 3.13.11 (#187)
* Pyinstaller 6.17.0 * Python 3.13.11 --------- Co-authored-by: Fedor Batonogov <f.batonogov@yandex.ru>
1 parent abb9901 commit bf18ec8

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/docker-image-linux-ghcr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
linux/ppc64le
8383
linux/s390x
8484
push: true
85-
build-args: PYTHON_VERSION=3.13.9-slim-bookworm
85+
build-args: PYTHON_VERSION=3.13.11-slim-bookworm
8686
tags: |
8787
${{ steps.meta.outputs.tags }}-slim
8888
${{ steps.meta.outputs.tags }}-slim-bookworm
@@ -108,7 +108,7 @@ jobs:
108108
linux/riscv64
109109
linux/s390x
110110
push: true
111-
build-args: PYTHON_VERSION=3.13.9-slim-trixie
111+
build-args: PYTHON_VERSION=3.13.11-slim-trixie
112112
tags: |
113113
${{ steps.meta.outputs.tags }}-slim-trixie
114114
labels: |
@@ -131,7 +131,7 @@ jobs:
131131
linux/ppc64le
132132
linux/s390x
133133
push: true
134-
build-args: PYTHON_VERSION=3.13.9-bookworm
134+
build-args: PYTHON_VERSION=3.13.11-bookworm
135135
tags: |
136136
${{ steps.meta.outputs.tags }}
137137
${{ steps.meta.outputs.tags }}-bookworm
@@ -157,7 +157,7 @@ jobs:
157157
linux/riscv64
158158
linux/s390x
159159
push: true
160-
build-args: PYTHON_VERSION=3.13.9-trixie
160+
build-args: PYTHON_VERSION=3.13.11-trixie
161161
tags: |
162162
${{ steps.meta.outputs.tags }}-trixie
163163
labels: |

.github/workflows/docker-image-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
linux/ppc64le
3737
linux/s390x
3838
push: true
39-
build-args: PYTHON_VERSION=3.13.9-slim-bookworm
39+
build-args: PYTHON_VERSION=3.13.11-slim-bookworm
4040
tags: |
4141
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim
4242
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-bookworm
@@ -56,7 +56,7 @@ jobs:
5656
linux/riscv64
5757
linux/s390x
5858
push: true
59-
build-args: PYTHON_VERSION=3.13.9-slim-trixie
59+
build-args: PYTHON_VERSION=3.13.11-slim-trixie
6060
tags: |
6161
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-trixie
6262
@@ -73,7 +73,7 @@ jobs:
7373
linux/ppc64le
7474
linux/s390x
7575
push: true
76-
build-args: PYTHON_VERSION=3.13.9-bookworm
76+
build-args: PYTHON_VERSION=3.13.11-bookworm
7777
tags: |
7878
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}
7979
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-bookworm
@@ -93,6 +93,6 @@ jobs:
9393
linux/riscv64
9494
linux/s390x
9595
push: true
96-
build-args: PYTHON_VERSION=3.13.9-trixie
96+
build-args: PYTHON_VERSION=3.13.11-trixie
9797
tags: |
9898
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-trixie

Dockerfile-py3-linux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use ARG to set the Python version
2-
ARG PYTHON_VERSION=3.13.9
2+
ARG PYTHON_VERSION=3.13.11
33
FROM python:${PYTHON_VERSION}
44
SHELL ["/bin/bash", "-i", "-c"]
55

Dockerfile-py3-linux-slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Define Python version as an argument, using the slim variant for a smaller image
2-
ARG PYTHON_VERSION=3.13.9-slim
2+
ARG PYTHON_VERSION=3.13.11-slim
33
FROM python:${PYTHON_VERSION}
44
SHELL ["/bin/bash", "-i", "-c"]
55

Dockerfile-py3-windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND=noninteractive
66

77
ARG WINE_VERSION=winehq-devel
88

9-
ARG PYTHON_VERSION=3.13.9
9+
ARG PYTHON_VERSION=3.13.11
1010
ARG PYINSTALLER_VERSION=6.17.0
1111

1212
# we need wine for this all to work, so we'll use the PPA

0 commit comments

Comments
 (0)