Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/astral-sh/uv:0.10@sha256:edd1fd89f3e5b005814cc8f777610445d7b7e3ed05361f9ddfae67bebfe8456a AS uv

FROM python:3.12-slim@sha256:f3fa41d74a768c2fce8016b98c191ae8c1bacd8f1152870a3f9f87d350920b7c AS builder
FROM python:3.14-slim@sha256:6a27522252aef8432841f224d9baaa6e9fce07b07584154fa0b9a96603af7456 AS builder
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

verify CI workflows (.github/workflows/*.yml) are updated to python-version: "3.14" - currently all use 3.12, creating a testing gap where Docker runs 3.14 but tests validate 3.12

Prompt To Fix With AI
This is a comment left during a code review.
Path: Dockerfile
Line: 3

Comment:
verify CI workflows (.github/workflows/*.yml) are updated to `python-version: "3.14"` - currently all use 3.12, creating a testing gap where Docker runs 3.14 but tests validate 3.12

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add "Programming Language :: Python :: 3.14" to pyproject.toml classifiers (currently only lists 3.12 and 3.13)

Prompt To Fix With AI
This is a comment left during a code review.
Path: Dockerfile
Line: 3

Comment:
add `"Programming Language :: Python :: 3.14"` to `pyproject.toml` classifiers (currently only lists 3.12 and 3.13)

How can I resolve this? If you propose a fix, please make it concise.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update pyproject.toml: change ruff target-version from "py312" to "py314" and ty python-version from "3.12" to "3.14"

Prompt To Fix With AI
This is a comment left during a code review.
Path: Dockerfile
Line: 3

Comment:
update `pyproject.toml`: change ruff `target-version` from `"py312"` to `"py314"` and ty `python-version` from `"3.12"` to `"3.14"`

How can I resolve this? If you propose a fix, please make it concise.


COPY --from=uv /uv /uvx /bin/

Expand All @@ -17,7 +17,7 @@ RUN uv sync --frozen --no-dev --extra treesitter-full --no-install-project --no-
COPY . .
RUN uv sync --frozen --no-dev --extra treesitter-full --no-binary-package pymgclient

FROM python:3.12-slim@sha256:f3fa41d74a768c2fce8016b98c191ae8c1bacd8f1152870a3f9f87d350920b7c
FROM python:3.14-slim@sha256:6a27522252aef8432841f224d9baaa6e9fce07b07584154fa0b9a96603af7456

RUN apt-get update && \
apt-get install -y --no-install-recommends ripgrep libssl3 zlib1g libzstd1 && \
Expand Down
Loading