Skip to content

Commit dcf79e3

Browse files
committed
Release v2025.11.0
1 parent f5faf71 commit dcf79e3

File tree

9 files changed

+214
-216
lines changed

9 files changed

+214
-216
lines changed

.bumper.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumper]
2-
current_version = "2025.10.0"
2+
current_version = "2025.11.0"
33
versioning_type = "calver"
44

55
[[tool.bumper.files]]

.github/workflows/lint_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
python-version: ${{ matrix.python-version }}
6363

6464
- name: Install uv
65-
uses: astral-sh/setup-uv@v6
65+
uses: astral-sh/setup-uv@v7
6666
with:
67-
version: "0.8.x"
67+
version: "0.9.x"
6868
enable-cache: true
6969
cache-dependency-glob: "uv.lock"
7070

@@ -78,7 +78,7 @@ jobs:
7878
uv run tox -e ${{ steps.get-pyver.outputs.PYVER }}
7979
8080
- name: Cache coverage for ${{ matrix.python-version }}
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: cov_py${{ matrix.python-version }}
8484
path: .coverage
@@ -98,7 +98,7 @@ jobs:
9898
python-version-file: "pyproject.toml"
9999

100100
- name: Pull coverage workflow artifacts
101-
uses: actions/download-artifact@v5
101+
uses: actions/dowlnoad-artifact@v6
102102
with:
103103
path: cov_cache/
104104

@@ -116,7 +116,7 @@ jobs:
116116
coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
117117
118118
- name: Publish cov HTML
119-
uses: actions/upload-artifact@v4
119+
uses: actions/upload-artifact@v5
120120
with:
121121
path: htmlcov/
122122
name: cov_report_html

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ ci:
33

44
repos:
55
- repo: https://github.com/psf/black-pre-commit-mirror
6-
rev: 25.9.0
6+
rev: 25.11.0
77
hooks:
88
- id: black
99
- repo: https://github.com/pycqa/isort
10-
rev: 6.1.0
10+
rev: 7.0.0
1111
hooks:
1212
- id: isort
1313
name: isort
@@ -36,6 +36,6 @@ repos:
3636
- id: python-check-blanket-type-ignore
3737
- id: python-use-type-annotations
3838
- repo: https://github.com/astral-sh/ruff-pre-commit
39-
rev: v0.14.0
39+
rev: v0.14.4
4040
hooks:
4141
- id: ruff-check

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
Versions follow [Calendar Versioning](https://calver.org/) (`<YYYY>`.`<MM>`.`<MICRO>`)
33

4+
## [v2025.11.0]
5+
### Changed
6+
* #5 Change canonical EOL data source
7+
48
## [v2025.10.0]
59
### Changed
610
* Bump cache release for Python 3.14 release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `.pre-commit-config.yaml`
1111

1212
```yaml
1313
- repo: https://github.com/sco1/pre-commit-python-eol
14-
rev: v2025.10.0
14+
rev: v2025.11.0
1515
hooks:
1616
- id: check-eol
1717
```

cached_release_cycle.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
"3.9": {
5151
"branch": "3.9",
5252
"pep": 596,
53-
"status": "security",
53+
"status": "end-of-life",
5454
"first_release": "2020-10-05",
55-
"end_of_life": "2025-10",
55+
"end_of_life": "2025-10-31",
5656
"release_manager": "Łukasz Langa"
5757
},
5858
"3.8": {
@@ -101,7 +101,7 @@
101101
"status": "end-of-life",
102102
"first_release": "2012-09-29",
103103
"end_of_life": "2017-09-29",
104-
"release_manager": "Georg Brandl, Ned Deily (3.3.7+)"
104+
"release_manager": "Georg Brandl & Ned Deily (3.3.7)"
105105
},
106106
"3.2": {
107107
"branch": "3.2",

pre_commit_python_eol/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2025.10.0"
1+
__version__ = "2025.11.0"
22
__url__ = "https://github.com/sco1/pre-commit-check-eol"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pre-commit-python-eol"
3-
version = "2025.10.0"
3+
version = "2025.11.0"
44
description = "A pre-commit hook for enforcing supported Python EOL"
55
license = "MIT"
66
license-files = ["LICENSE"]
@@ -42,10 +42,10 @@ dev = [
4242
"flake8~=7.1",
4343
"flake8-annotations~=3.1",
4444
"flake8-define-class-attributes~=0.2",
45-
"isort~=6.0",
45+
"isort~=7.0",
4646
"mypy~=1.14",
4747
"pre-commit~=4.0",
48-
"pytest~=8.3",
48+
"pytest~=9.0",
4949
"pytest-cov~=7.0",
5050
"pytest-randomly~=4.0",
5151
"ruff~=0.9",

uv.lock

Lines changed: 193 additions & 199 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)