From fd70e6b7b5c26a2de56f5a2bca262ceeee75d567 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Dec 2022 10:58:43 +0000 Subject: [PATCH 1/2] Bump python from 3.10-slim to 3.11-slim in /docker/web Bumps python from 3.10-slim to 3.11-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docker/web/Dockerfile | 2 +- docker/web/Dockerfile_alpine | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/web/Dockerfile b/docker/web/Dockerfile index 522d65ff..79abc9a9 100644 --- a/docker/web/Dockerfile +++ b/docker/web/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.11-slim ARG APP_HOME=/app WORKDIR ${APP_HOME} diff --git a/docker/web/Dockerfile_alpine b/docker/web/Dockerfile_alpine index dd9c405c..e19222f4 100644 --- a/docker/web/Dockerfile_alpine +++ b/docker/web/Dockerfile_alpine @@ -1,5 +1,5 @@ # Less size than Debian, slowest to build -FROM python:3.10-alpine +FROM python:3.11-alpine ENV PYTHONUNBUFFERED 1 WORKDIR /app From 98c2f8313a890aee9fd35a29200319e0243be49b Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Mon, 19 Dec 2022 12:09:11 +0100 Subject: [PATCH 2/2] Bump python to 3.11 on CI --- .github/workflows/python.yml | 4 ++-- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 26241fa4..20c3ab5c 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v3 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] services: redis: image: redis diff --git a/setup.cfg b/setup.cfg index b6ae2444..d899d3bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,7 @@ env = DJANGO_DOT_ENV_FILE=.env.test [mypy] -python_version = 3.10 +python_version = 3.11 check_untyped_defs = True ignore_missing_imports = True warn_unused_ignores = True