diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f8e8ab9..26dd1c5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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 diff --git a/.python-version b/.python-version index 24ee5b1..6324d40 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.13 +3.14 diff --git a/Dockerfile b/Dockerfile index 2530ad1..b295df7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" \ @@ -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"