Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base image for building the virtual environment
FROM python:3.13-bookworm AS builder
FROM python:3.14-bookworm AS builder

ENV PATH="/root/.cargo/bin:$PATH" \
UV_INDEX_URL="https://mirrors.cernet.edu.cn/pypi/web/simple" \
Expand All @@ -25,7 +25,7 @@ COPY . .
RUN make build && make test

# Final image for running the application
FROM python:3.13-slim-bookworm
FROM python:3.14-slim-bookworm

LABEL author="Mystic"

Expand Down