chore(deps): update python to v3.13.1
Some checks failed
renovate/artifacts Artifact file update failure
pilotwings / python (push) Failing after 1m13s
pilotwings / node (push) Successful in 25s
pilotwings / docker (push) Has been skipped

This commit is contained in:
Renovate Bot 2024-12-05 13:01:32 +00:00
parent 29d76a8a12
commit 1d890a261e
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ on: [push]
jobs:
python:
runs-on: ubuntu-latest
container: python:3.13.0-slim
container: python:3.13.1-slim
steps:
- run: apt-get update
- run: apt-get install -y git nodejs

View File

@ -4,14 +4,14 @@ WORKDIR /app
COPY . .
RUN npm ci && npm run build
FROM python:3.13.0-slim AS backend
FROM python:3.13.1-slim AS backend
WORKDIR /app
COPY . .
COPY --from=frontend /app/backend/dist /app/backend/dist
RUN pip install poetry && poetry build
FROM python:3.13.0-slim
FROM python:3.13.1-slim
COPY --from=backend /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist

View File

@ -10,7 +10,7 @@ include = ["backend/dist/**"]
pilotwings = 'backend.pilotwings:launch'
[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.13.1"
docker = "^7.1.0"
fastapi = {extras = ["standard"], version = "^0.115.6"}
python-dotenv = "^1.0.1"