From 6072a4d236b6b411519e146ba4c531eaf26be9bb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 03:36:27 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- frontend/Dockerfile.app | 4 ++-- frontend/Dockerfile.nginx | 2 +- frontend/poetry.lock | 6 ++---- frontend/pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/frontend/Dockerfile.app b/frontend/Dockerfile.app index 9dcbd47..a377ef4 100644 --- a/frontend/Dockerfile.app +++ b/frontend/Dockerfile.app @@ -1,6 +1,6 @@ ### BUILDER IMAGE ### # syntax=docker/dockerfile:1 -FROM python:3.12-slim AS BUILDER +FROM python:3.13-slim AS BUILDER # set environment variables ENV LANG=C.UTF-8 @@ -23,7 +23,7 @@ COPY rctool/ ./rctool RUN pip install . --no-cache-dir ### APP IMAGE ### -FROM python:3.12-slim AS APP +FROM python:3.13-slim AS APP WORKDIR /app # set environment variables diff --git a/frontend/Dockerfile.nginx b/frontend/Dockerfile.nginx index 3877796..234102d 100644 --- a/frontend/Dockerfile.nginx +++ b/frontend/Dockerfile.nginx @@ -1,6 +1,6 @@ ### BUILDER IMAGE ### # syntax=docker/dockerfile:1 -FROM python:3.12-slim AS BUILDER +FROM python:3.13-slim AS BUILDER WORKDIR /app # set environment variables diff --git a/frontend/poetry.lock b/frontend/poetry.lock index 9234212..2dda3c3 100644 --- a/frontend/poetry.lock +++ b/frontend/poetry.lock @@ -382,7 +382,6 @@ files = [ {file = "cryptography-44.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:761817a3377ef15ac23cd7834715081791d4ec77f9297ee694ca1ee9c2c7e5eb"}, {file = "cryptography-44.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3c672a53c0fb4725a29c303be906d3c1fa99c32f58abe008a82705f9ee96f40b"}, {file = "cryptography-44.0.0-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:4ac4c9f37eba52cb6fbeaf5b59c152ea976726b865bd4cf87883a7e7006cc543"}, - {file = "cryptography-44.0.0-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:60eb32934076fa07e4316b7b2742fa52cbb190b42c2df2863dbc4230a0a9b385"}, {file = "cryptography-44.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ed3534eb1090483c96178fcb0f8893719d96d5274dfde98aa6add34614e97c8e"}, {file = "cryptography-44.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f3f6fdfa89ee2d9d496e2c087cebef9d4fcbb0ad63c40e821b39f74bf48d9c5e"}, {file = "cryptography-44.0.0-cp37-abi3-win32.whl", hash = "sha256:eb33480f1bad5b78233b0ad3e1b0be21e8ef1da745d8d2aecbb20671658b9053"}, @@ -393,7 +392,6 @@ files = [ {file = "cryptography-44.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:c5eb858beed7835e5ad1faba59e865109f3e52b3783b9ac21e7e47dc5554e289"}, {file = "cryptography-44.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f53c2c87e0fb4b0c00fa9571082a057e37690a8f12233306161c8f4b819960b7"}, {file = "cryptography-44.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:9e6fc8a08e116fb7c7dd1f040074c9d7b51d74a8ea40d4df2fc7aa08b76b9e6c"}, - {file = "cryptography-44.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:9abcc2e083cbe8dde89124a47e5e53ec38751f0d7dfd36801008f316a127d7ba"}, {file = "cryptography-44.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:d2436114e46b36d00f8b72ff57e598978b37399d2786fd39793c36c6d5cb1c64"}, {file = "cryptography-44.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a01956ddfa0a6790d594f5b34fc1bfa6098aca434696a03cfdbe469b8ed79285"}, {file = "cryptography-44.0.0-cp39-abi3-win32.whl", hash = "sha256:eca27345e1214d1b9f9490d200f9db5a874479be914199194e746c893788d417"}, @@ -1937,5 +1935,5 @@ test = ["coverage (>=5.3)", "tomli (>=2.0.1)", "tox"] [metadata] lock-version = "2.0" -python-versions = ">=3.12,<3.13" -content-hash = "009b920133107e1e748066abecea47b60907b38be35927bc8eadaa6446dcbdf9" +python-versions = ">=3.13,<3.14" +content-hash = "5b23708db87f82ffbe4297d7014606064587564f7ba8fc3275926f2481c36897" diff --git a/frontend/pyproject.toml b/frontend/pyproject.toml index a7b6ad2..0e5957c 100644 --- a/frontend/pyproject.toml +++ b/frontend/pyproject.toml @@ -8,7 +8,7 @@ authors = [ readme = "README.md" [tool.poetry.dependencies] -python = ">=3.12,<3.13" +python = ">=3.13,<3.14" django = "^5.0.3" scikit-learn = "^1.4.1" scipy = "^1.12.0"