5
5
requires = [
6
6
" setuptools == 75.6.0" ,
7
7
" setuptools_scm[toml] == 8.1.0" ,
8
- " frequenz-repo-config[lib] == 0.10 .0" ,
8
+ " frequenz-repo-config[lib] == 0.11 .0" ,
9
9
]
10
10
build-backend = " setuptools.build_meta"
11
11
@@ -55,7 +55,7 @@ dev-mkdocs = [
55
55
" mkdocs-material == 9.5.43" ,
56
56
" mkdocstrings[python] == 0.26.2" ,
57
57
" mkdocstrings-python == 1.12.2" ,
58
- " frequenz-repo-config[lib] == 0.10 .0" ,
58
+ " frequenz-repo-config[lib] == 0.11 .0" ,
59
59
]
60
60
dev-mypy = [
61
61
" mypy == 1.13.0" ,
@@ -65,7 +65,7 @@ dev-mypy = [
65
65
]
66
66
dev-noxfile = [
67
67
" nox == 2024.10.9" ,
68
- " frequenz-repo-config[lib] == 0.10 .0" ,
68
+ " frequenz-repo-config[lib] == 0.11 .0" ,
69
69
]
70
70
dev-pylint = [
71
71
# dev-pytest already defines a dependency to pylint because of the examples
@@ -75,7 +75,7 @@ dev-pylint = [
75
75
dev-pytest = [
76
76
" pytest == 8.3.3" ,
77
77
" pylint == 3.3.1" , # We need this to check for the examples
78
- " frequenz-repo-config[extra-lint-examples] == 0.10 .0" ,
78
+ " frequenz-repo-config[extra-lint-examples] == 0.11 .0" ,
79
79
" pytest-mock == 3.14.0" ,
80
80
" pytest-asyncio == 0.24.0" ,
81
81
" async-solipsism == 0.7" ,
@@ -137,6 +137,8 @@ disable = [
137
137
" unsubscriptable-object" ,
138
138
# Checked by mypy
139
139
" no-member" ,
140
+ " possibly-used-before-assignment" ,
141
+ " no-name-in-module" ,
140
142
# Checked by flake8
141
143
" f-string-without-interpolation" ,
142
144
" line-too-long" ,
@@ -150,6 +152,7 @@ disable = [
150
152
[tool .pytest .ini_options ]
151
153
testpaths = [" tests" , " src" ]
152
154
asyncio_mode = " auto"
155
+ asyncio_default_fixture_loop_scope = " function"
153
156
required_plugins = [" pytest-asyncio" , " pytest-mock" ]
154
157
155
158
[tool .mypy ]
0 commit comments