Skip to content

Commit

Permalink
chore(deps): update python version (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
franTarkenton authored Dec 4, 2024
1 parent 637dee9 commit 433b5f1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 135 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: cache poetry install
uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions backend-py/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:bookworm AS build
FROM python:3.13.0 AS build

# Disable cache dir, disable upgrade message, create .venv in project dir
ARG PIP_NO_CACHE_DIR=off \
Expand All @@ -12,7 +12,7 @@ RUN pip install poetry==1.6.1
RUN poetry install --no-root -vvv --without dev --sync

# Deploy
FROM python:slim-bookworm AS deploy
FROM python:3.13.0-slim AS deploy

# Output to stdout/stderr, don't create .pyc files, etc.
ENV PYTHONUNBUFFERED=1 \
Expand Down
Loading

0 comments on commit 433b5f1

Please sign in to comment.