Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #195

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/Dockerfile.app
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.nginx
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions frontend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading