From 641a623a457d7b7ce87f5c6a6785c1a6194b283e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 28 Jul 2025 12:01:46 +0000 Subject: [PATCH] chore(deps): update python --- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1b96e54..336ecce 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.9" + python-version: "3.13" - name: Install Poetry uses: snok/install-poetry@v1 diff --git a/Dockerfile b/Dockerfile index 5fc98fc..bdb5c7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine AS base +FROM python:3.13-alpine AS base # Builder FROM base AS builder diff --git a/pyproject.toml b/pyproject.toml index 63b74ba..93b9648 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "A simple Telegram bot to receive SMS messages." authors = [{ name = "Andrew Williams", email = "andy@tensixtyone.com" }] license = { text = "MIT" } readme = "README.md" -requires-python = ">=3.9,<3.10" +requires-python = ">=3.13,<3.14" dependencies = [ "flask (>=3.1.0,<4.0.0)", "waitress (>=3.0.2,<4.0.0)",