Skip to content

Commit

Permalink
fix: add py.typed to support mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ADR-007 committed Apr 10, 2024
1 parent 07fb0a9 commit 091adfd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
Empty file.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
"Framework :: Pydantic :: 2",
]
packages = [
{ include = "pydantic_strict_partial.py", from = "." },
{ include = "pydantic_strict_partial", from = "." },
]
homepage = "https://github.com/ADR-007/pydantic-strict-partial"

Expand Down Expand Up @@ -71,9 +71,9 @@ deps =
mypy
pytest
commands =
ruff check pydantic_strict_partial.py tests.py
ruff format --check pydantic_strict_partial.py tests.py
mypy pydantic_strict_partial.py tests.py
ruff check pydantic_strict_partial tests.py
ruff format --check pydantic_strict_partial tests.py
mypy pydantic_strict_partial tests.py
"""

Expand Down

0 comments on commit 091adfd

Please sign in to comment.