Skip to content

Commit 68288ac

Browse files
authored
Merge pull request #733 from chirizxc/bump-deps
bump dep's
2 parents 5838399 + f744224 commit 68288ac

4 files changed

Lines changed: 30 additions & 10 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525

2626
- name: "Install uv"
2727
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
28+
with:
29+
enable-cache: false
2830

2931
- name: "Build"
3032
run: uv build
@@ -54,6 +56,8 @@ jobs:
5456

5557
- name: "Install uv"
5658
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
59+
with:
60+
enable-cache: false
5761

5862
- name: "Publish"
59-
run: uv publish
63+
run: uv publish

.mypy.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ exclude = ^src/dishka/(_adaptix|integrations)/
55
strict = true
66
strict_bytes = true
77
local_partial_types = true
8+
# This enables fast Rust-based parser that parses directly to mypy AST
9+
native_parser = true
810

911
[mypy-dishka._adaptix.*]
1012
disable_error_code =

.typos.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[default.extend-words]
2+
# error: `asend` should be `ascend`
3+
# --> .\src\dishka\async_container.py:331:32
4+
# |
5+
# 331 | await agen.asend(exception)
6+
# | ^^^^^
27
asend = "asend"
38
# Remove after dishka 2.0!!!
9+
# error: `settigs` should be `settings`
10+
# |
11+
# 1 | .\src\dishka\entities\validation_settigs.py
12+
# | ^^^^^^^
13+
# error: `settigs` should be `settings`
14+
# --> .\src\dishka\entities\validation_settigs.py:10:34
15+
# |
16+
# 10 | "`dishka.entities.validation_settigs`"
17+
# | ^^^^^^^
418
settigs = "settigs"

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
3-
"setuptools==80.9.0",
4-
"setuptools-scm[simple]==9.2.0",
3+
"setuptools==82.0.1",
4+
"setuptools-scm[simple]==10.0.5",
55
]
66
build-backend = "setuptools.build_meta"
77

@@ -35,14 +35,14 @@ dependencies = [
3535
]
3636

3737
[dependency-groups]
38-
typos = ["typos==1.44.0"]
39-
zizmor = ["zizmor==1.22.0"]
40-
ast-grep = ["ast-grep-cli==0.41.0"]
38+
typos = ["typos==1.47.2"]
39+
zizmor = ["zizmor==1.25.2"]
40+
ast-grep = ["ast-grep-cli==0.42.3"]
4141
ci = [
42-
"uv==0.10.7",
43-
"ruff==0.15.4",
44-
"mypy==1.19.1",
45-
"nox==2026.2.9",
42+
"uv==0.11.19",
43+
"ruff==0.15.15",
44+
"mypy==2.1.0",
45+
"nox==2026.4.10",
4646
]
4747
dev = [
4848
{ include-group = "ci" },

0 commit comments

Comments
 (0)