-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (34 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
35 lines (34 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
build-backend = "pbr.build"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
# Modules that have been fully type-annotated. Add modules here as they are
# migrated to enable strict type checking for them.
files = [
"ironicclient/common/i18n.py",
"ironicclient/common/filecache.py",
"ironicclient/common/apiclient/exceptions.py",
"ironicclient/common/apiclient/base.py",
"ironicclient/common/base.py",
"ironicclient/exc.py",
"ironicclient/common/utils.py",
"ironicclient/common/http.py",
"ironicclient/v1/events.py",
"ironicclient/v1/shard.py",
"ironicclient/v1/utils.py",
"ironicclient/v1/conductor.py",
"ironicclient/v1/deploy_template.py",
"ironicclient/v1/inspection_rule.py",
"ironicclient/v1/runbook.py",
"ironicclient/v1/volume_connector.py",
"ironicclient/v1/volume_target.py",
"ironicclient/v1/client.py",
"ironicclient/v1/port.py",
"ironicclient/v1/driver.py",
"ironicclient/v1/allocation.py",
"ironicclient/v1/chassis.py",
]