From 2bec2b7835857b5894176f66eb00f60c8a3e1316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Aur=C3=A8le=20Brothier?= Date: Thu, 18 Jan 2024 21:53:28 +0100 Subject: [PATCH] deps: python 3.12 --- Dockerfile | 4 ++-- poetry.lock | 4 ++-- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 250b4ee..0d16272 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ #################### # BACKEND BUILDER # #################### -FROM python:3.11-alpine as builder +FROM python:3.12-alpine as builder ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ @@ -45,7 +45,7 @@ RUN set -ex \ ################# # Runtime stage # ################# -FROM python:3.11-alpine as production +FROM python:3.12-alpine as production ARG version=development ENV VERSION=${version} diff --git a/poetry.lock b/poetry.lock index ed74629..677532f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -480,5 +480,5 @@ standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", [metadata] lock-version = "2.0" -python-versions = "^3.11" -content-hash = "deb040625ba81df5251ef7466720308bfaed2889e55f2aacdfd8e587e74db12b" +python-versions = "^3.12" +content-hash = "d555f3e296ad6b93b2346ab9b5537486f8c73a68fed8eff2f0a53dac0254dfa1" diff --git a/pyproject.toml b/pyproject.toml index d75c1cd..bef863e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" readme = "README.md" [tool.poetry.dependencies] -python = "^3.11" +python = "^3.12" fastapi = "^0.108.0" urllib3 = "^2.1.0" uvicorn = "^0.25.0"