From a60b6326517a763230154010b11cc26c1ef1c858 Mon Sep 17 00:00:00 2001 From: Frank Sachsenheim Date: Wed, 16 Oct 2024 13:23:24 +0200 Subject: [PATCH] Updates to Python 3.13 --- .github/workflows/quality-checks.yml | 2 +- Dockerfile | 2 +- Dockerfile-dev | 2 +- poetry.lock | 4 ++-- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 7969996..de1f886 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -35,7 +35,7 @@ jobs: - run: pipx install poetry - uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" cache: poetry - run: poetry install -v - run: just ${{ matrix.target }} diff --git a/Dockerfile b/Dockerfile index 1ec8b0d..15c3e69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/python:3.12-alpine +FROM docker.io/python:3.13-alpine LABEL org.opencontainers.image.authors="funkyfuture@riseup.net" diff --git a/Dockerfile-dev b/Dockerfile-dev index b6913c3..dd05362 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,4 +1,4 @@ -FROM docker.io/python:3.12-alpine +FROM docker.io/python:3.13-alpine CMD ["deck-chores"] LABEL org.label-schema.name="deck-chores" diff --git a/poetry.lock b/poetry.lock index 81177b3..98d071e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1220,5 +1220,5 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.0" -python-versions = "^3.12" -content-hash = "a478dddb5ac19d13361352b81eaa30d275a68536b96d946910ca6008f4683b08" +python-versions = "^3.13" +content-hash = "9dd381612bcac54e07a514352164a57cc3bfc22d22f09bb4c6edf317b18b833d" diff --git a/pyproject.toml b/pyproject.toml index ad8bd9f..472ca48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ deck-chores = "deck_chores.main:main" # the Dockerfile{-dev} have these values too # .readthedocs.yml must be in parity with the Python version # it's also all over the Github workflows -python = "^3.12" +python = "^3.13" apscheduler = "^3.6" cerberus = "^1.3.4" docker = {version = "^7", extras = ["ssh"]}