Skip to content

Commit

Permalink
locker: port base implementation from poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Mar 9, 2022
1 parent fa72bcf commit 48ea8ac
Show file tree
Hide file tree
Showing 15 changed files with 1,291 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ mypy_path = "src"
files = "src, tests"
exclude = "(?x)(^tests/.*/fixtures | ^src/poetry/core/_vendor)"

check_untyped_defs = true
#ignore_missing_imports = true
show_error_codes = true
#warn_redundant_casts = true
#warn_unused_configs = true
#warn_unused_ignores = true
#files = "src"

[[tool.mypy.overrides]]
module = [
'jsonschema.*',
Expand Down
6 changes: 6 additions & 0 deletions src/poetry/core/lock/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from poetry.core.lock.locker import Locker


__all__ = [
"Locker",
]
Loading

0 comments on commit 48ea8ac

Please sign in to comment.