Skip to content

Commit 48ea8ac

Browse files
committed
locker: port base implementation from poetry
1 parent fa72bcf commit 48ea8ac

File tree

15 files changed

+1291
-1
lines changed

15 files changed

+1291
-1
lines changed

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ mypy_path = "src"
7676
files = "src, tests"
7777
exclude = "(?x)(^tests/.*/fixtures | ^src/poetry/core/_vendor)"
7878

79+
check_untyped_defs = true
80+
#ignore_missing_imports = true
81+
show_error_codes = true
82+
#warn_redundant_casts = true
83+
#warn_unused_configs = true
84+
#warn_unused_ignores = true
85+
#files = "src"
86+
7987
[[tool.mypy.overrides]]
8088
module = [
8189
'jsonschema.*',

src/poetry/core/lock/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from poetry.core.lock.locker import Locker
2+
3+
4+
__all__ = [
5+
"Locker",
6+
]

0 commit comments

Comments
 (0)