From 904f064f60ecbedc42d400e0d117c9c2b5976022 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 11:57:03 +0000 Subject: [PATCH] feat(Dependencies): Update Python to v3.10.13 | datasource | package | from | to | | --------------- | ----------------------------- | ------ | ------- | | github-releases | containerbase/python-prebuild | 3.10.4 | 3.10.13 | | docker | python | 3.10.4 | 3.10.13 | --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- poetry.lock | 4 ++-- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec1c05bd..15ed2223 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.4-alpine as builder +FROM python:3.10.13-alpine as builder ADD src /code/src ADD pyproject.toml poetry.lock /code/ @@ -9,7 +9,7 @@ RUN pip install poetry && poetry build -f wheel # by using a build container we prevent us from carrying around poetry # alongside its dependencies -FROM python:3.10.4-alpine +FROM python:3.10.13-alpine ARG OS_CREDITS_VERSION ARG WHEEL_NAME=os_credits-2.0.0-py3-none-any.whl EXPOSE 80 diff --git a/Dockerfile.dev b/Dockerfile.dev index 1d539f9c..2cc9ae13 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,6 +1,6 @@ # Expected to be called with `--volume $(PWD)/src:/code/src:ro` # Uses `adev` from `aiohttp-devtools` to restart the application on any code change -FROM python:3.10.4-alpine +FROM python:3.10.13-alpine ADD src /code/src ADD pyproject.toml poetry.lock /code/ diff --git a/poetry.lock b/poetry.lock index e822e465..cfdbab75 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2080,5 +2080,5 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" -python-versions = "3.10.4" -content-hash = "eb878125e00f6669a2f5d3c09a0a2f6d14c0e9093fd6e6165093f67a0501da55" +python-versions = "3.10.13" +content-hash = "09d143b88b0cb1105816a8de60b01b23c51a58753092d7476454f14f5a003cca" diff --git a/pyproject.toml b/pyproject.toml index ac6a90d8..3b767c01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = ["gilbus", "ekatchko"] [tool.poetry.dependencies] -python = "3.10.4" +python = "3.10.13" aiohttp = "3.8.6" aiohttp-swagger = "1.0.16" aiohttp_jinja2 = "1.5.1"