From edb9d46faf993b2312a16a67f1c421fdc5647f25 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:04:11 +0000 Subject: [PATCH] feat(Dependencies): Update Python to v3.10.14 | datasource | package | from | to | | --------------- | ----------------------------- | ------ | ------- | | github-releases | containerbase/python-prebuild | 3.10.4 | 3.10.14 | | docker | python | 3.10.4 | 3.10.14 | --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec1c05bd..acff1122 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.4-alpine as builder +FROM python:3.10.14-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.14-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..22d0771a 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.14-alpine ADD src /code/src ADD pyproject.toml poetry.lock /code/ diff --git a/pyproject.toml b/pyproject.toml index 556b5d2f..cfc1f297 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.poetry] name = "os_credits" -version = "2.1.0" +version = "2.2.0" description = "" authors = ["gilbus", "ekatchko"] [tool.poetry.dependencies] -python = "3.10.4" +python = "3.10.14" aiohttp = "3.9.4" aiohttp-swagger = "1.0.16" aiohttp_jinja2 = "1.5.1"