Skip to content

Commit

Permalink
Python 3.13.1 (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: Fedor Batonogov <[email protected]>
  • Loading branch information
github-actions[bot] and batonogov authored Dec 9, 2024
1 parent 78eb9c4 commit f5b22e7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
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 @@ -82,7 +82,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.13.0-slim-bookworm
build-args: PYTHON_VERSION=3.13.1-slim-bookworm
tags: |
${{ steps.meta.outputs.tags }}-slim
${{ steps.meta.outputs.tags }}-slim-bookworm
Expand All @@ -104,7 +104,7 @@ jobs:
linux/arm/v7
linux/arm64/v8
push: true
build-args: PYTHON_VERSION=3.13.0-slim-bullseye
build-args: PYTHON_VERSION=3.13.1-slim-bullseye
tags: |
${{ steps.meta.outputs.tags }}-slim-bullseye
labels: |
Expand All @@ -127,7 +127,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.13.0-bookworm
build-args: PYTHON_VERSION=3.13.1-bookworm
tags: |
${{ steps.meta.outputs.tags }}
${{ steps.meta.outputs.tags }}-bookworm
Expand All @@ -149,7 +149,7 @@ jobs:
linux/arm/v7
linux/arm64/v8
push: true
build-args: PYTHON_VERSION=3.13.0-bullseye
build-args: PYTHON_VERSION=3.13.1-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.13.0-slim-bookworm
build-args: PYTHON_VERSION=3.13.1-slim-bookworm
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-bookworm
Expand All @@ -52,7 +52,7 @@ jobs:
linux/arm/v7
linux/arm64/v8
push: true
build-args: PYTHON_VERSION=3.13.0-slim-bullseye
build-args: PYTHON_VERSION=3.13.1-slim-bullseye
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim-bullseye
Expand All @@ -69,7 +69,7 @@ jobs:
linux/ppc64le
linux/s390x
push: true
build-args: PYTHON_VERSION=3.13.0-bookworm
build-args: PYTHON_VERSION=3.13.1-bookworm
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}
${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-bookworm
Expand All @@ -85,6 +85,6 @@ jobs:
linux/arm/v7
linux/arm64/v8
push: true
build-args: PYTHON_VERSION=3.13.0-bullseye
build-args: PYTHON_VERSION=3.13.1-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,5 +1,5 @@
# Use ARG to set the Python version
ARG PYTHON_VERSION=3.13.0
ARG PYTHON_VERSION=3.13.1
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,5 +1,5 @@
# Define Python version as an argument, using the slim variant for a smaller image
ARG PYTHON_VERSION=3.13.0-slim
ARG PYTHON_VERSION=3.13.1-slim
FROM python:${PYTHON_VERSION}
SHELL ["/bin/bash", "-i", "-c"]

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

ARG WINE_VERSION=winehq-devel

ARG PYTHON_VERSION=3.13.0
ARG PYTHON_VERSION=3.13.1
ARG PYINSTALLER_VERSION=6.11.1

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

0 comments on commit f5b22e7

Please sign in to comment.