55requires = [
66 " setuptools == 75.6.0" ,
77 " setuptools_scm[toml] == 8.1.0" ,
8- " frequenz-repo-config[lib] == 0.10 .0" ,
8+ " frequenz-repo-config[lib] == 0.11 .0" ,
99]
1010build-backend = " setuptools.build_meta"
1111
@@ -55,7 +55,7 @@ dev-mkdocs = [
5555 " mkdocs-material == 9.5.43" ,
5656 " mkdocstrings[python] == 0.26.2" ,
5757 " mkdocstrings-python == 1.12.2" ,
58- " frequenz-repo-config[lib] == 0.10 .0" ,
58+ " frequenz-repo-config[lib] == 0.11 .0" ,
5959]
6060dev-mypy = [
6161 " mypy == 1.13.0" ,
@@ -65,7 +65,7 @@ dev-mypy = [
6565]
6666dev-noxfile = [
6767 " nox == 2024.10.9" ,
68- " frequenz-repo-config[lib] == 0.10 .0" ,
68+ " frequenz-repo-config[lib] == 0.11 .0" ,
6969]
7070dev-pylint = [
7171 # dev-pytest already defines a dependency to pylint because of the examples
@@ -75,7 +75,7 @@ dev-pylint = [
7575dev-pytest = [
7676 " pytest == 8.3.3" ,
7777 " 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" ,
7979 " pytest-mock == 3.14.0" ,
8080 " pytest-asyncio == 0.24.0" ,
8181 " async-solipsism == 0.7" ,
@@ -137,6 +137,8 @@ disable = [
137137 " unsubscriptable-object" ,
138138 # Checked by mypy
139139 " no-member" ,
140+ " possibly-used-before-assignment" ,
141+ " no-name-in-module" ,
140142 # Checked by flake8
141143 " f-string-without-interpolation" ,
142144 " line-too-long" ,
@@ -150,6 +152,7 @@ disable = [
150152[tool .pytest .ini_options ]
151153testpaths = [" tests" , " src" ]
152154asyncio_mode = " auto"
155+ asyncio_default_fixture_loop_scope = " function"
153156required_plugins = [" pytest-asyncio" , " pytest-mock" ]
154157
155158[tool .mypy ]
0 commit comments