Skip to content

Commit ec35f0a

Browse files
committed
Switch to 3.14
1 parent 587892b commit ec35f0a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v7
2424
with:
25-
python-version: "3.12"
25+
python-version: "3.14"
2626

2727
- name: Poetry caches
2828
uses: actions/cache@v4

.github/workflows/e2e-external-phase-2.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ jobs:
9090

9191
- name: Install uv
9292
uses: astral-sh/setup-uv@v7
93-
with:
94-
python-version: "3.12"
9593

9694
- name: Poetry caches
9795
uses: actions/cache@v4

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.14

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You're welcome to contribute, though I can't promise the experience will be as s
44

55
### Things to know:
66

7-
- Python3.12
7+
- Python3.14
88
- Use [uv](https://docs.astral.sh/uv/)
99
- Launch tests with `pytest`, config is in setup.cfg
1010
- `ruff` runs through `pre-commit`, so you can install hooks with `pre-commit install`.
@@ -78,6 +78,7 @@ In case "branch coverage" is enabled, the coverage rate is
7878
`(covered_lines + covered_branches) / (total_lines + total_branches)`.
7979
In order to display coverage rates, we need to round the values. Depending on
8080
the situation, we either round to 0 or 2 decimal places. Rounding rules are:
81+
8182
- We always round down (truncate) the value.
8283
- We don't display the trailing zeros in the decimal part (nor the decimal point
8384
if the decimal part is 0).

Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# - Dockerfile
33
# - .github/workflows/release.yml
44

5-
FROM python:3.12-slim
5+
FROM python:3.14-slim
66

77
RUN set -eux; \
88
apt-get update; \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "coverage-comment"
33
version = "0.0.0"
44
description = "Publish diff coverage report as PR comment, and create a coverage badge to display on the readme, for Python projects."
55
authors = [{ name = "Joachim Jablon", email = "ewjoachim@gmail.com" }]
6-
requires-python = ">=3.12"
6+
requires-python = ">=3.14"
77
license = { file = "LICENSE" }
88
dependencies = ["coverage[toml]", "httpx[http2]", "Jinja2"]
99

0 commit comments

Comments
 (0)