Skip to content

Commit c678937

Browse files
authored
⬆️ upgrade dependencies
1 parent 380bdcc commit c678937

File tree

3 files changed

+375
-283
lines changed

3 files changed

+375
-283
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ci:
77
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
88
repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: v0.12.11
10+
rev: v0.13.1
1111
hooks:
1212
- id: ruff-check
1313
args: [--fix, --exit-non-zero-on-fix]

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,13 @@ Documentation = "https://github.com/yanyongyu/githubkit"
2929
"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues"
3030

3131
[dependency-groups]
32+
thirdparty = ["redis >=5.2.0, <7.0.0"]
3233
dev = [
33-
"redis >=5.2.0, <7.0.0",
34-
"ruff >=0.12.0, <0.13.0",
34+
{ include-group = "thirdparty" },
35+
{ include-group = "codegen" },
36+
{ include-group = "test" },
37+
{ include-group = "docs" },
38+
"ruff >=0.13.0, <0.14.0",
3539
"nonemoji >=0.1.2, <0.2.0",
3640
"pre-commit >=4.0.0, <5.0.0",
3741
]
@@ -42,10 +46,10 @@ codegen = [
4246
"openapi-pydantic >=0.5.0, <0.6.0",
4347
]
4448
test = [
49+
{ include-group = "thirdparty" },
4550
"pytest >=8.1.0, <9.0.0",
46-
"pytest-cov >=6.0.0, <7.0.0",
51+
"pytest-cov >=7.0.0, <8.0.0",
4752
"pytest-xdist >=3.5.0, <4.0.0",
48-
"redis >=5.2.0, <7.0.0",
4953
"coverage-conditional-plugin >=0.9.0, <0.10.0",
5054
]
5155
docs = [
@@ -60,7 +64,6 @@ pydantic-v2 = ["pydantic >=2.0.0, <3.0.0"]
6064

6165
[tool.uv]
6266
required-version = ">=0.8.0"
63-
default-groups = ["dev", "codegen", "test", "docs"]
6467
conflicts = [[{ group = "pydantic-v1" }, { group = "pydantic-v2" }]]
6568

6669
[tool.uv.build-backend]

0 commit comments

Comments
 (0)