From d6dda8767ebef72dab9f9cf0eccd0e4138526390 Mon Sep 17 00:00:00 2001 From: Ee Durbin Date: Tue, 18 Jun 2024 11:39:00 -0400 Subject: [PATCH] upgrade to python 3.12 --- .python-version | 2 +- Dockerfile | 4 ++-- tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.python-version b/.python-version index b6d8b76..455808f 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.11.8 +3.12.4 diff --git a/Dockerfile b/Dockerfile index 1258eac..b4ce493 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.8-slim-bullseye as build +FROM python:3.12.4-slim-bookworm as build RUN set -x \ && python3 -m venv /opt/conveyor @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ install -r /tmp/requirements.txt -FROM python:3.11.8-slim-bullseye +FROM python:3.12.4-slim-bookworm ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 diff --git a/tox.ini b/tox.ini index ec6e900..2071b0e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py311 +envlist = py312 skipsdist = True [testenv]