-
-
Notifications
You must be signed in to change notification settings - Fork 351
chore(deps): bump python from 3.12-slim to 3.14-slim #419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add Prompt To Fix With AIThis 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!
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update Prompt To Fix With AIThis 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/ | ||
|
|
||
|
|
@@ -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 && \ | ||
|
|
||
There was a problem hiding this comment.
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.12Prompt To Fix With AI