Skip to content

Commit

Permalink
Removed toml typing dependency since mypy not active
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Maas authored Sep 3, 2022
1 parent 396aa6f commit 043ec87
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion deptry/imports_to_package_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def convert(self, imported_modules: List[str]) -> List[str]:

return packages

def _get_stdlib_packages(self) -> set[str]:
def _get_stdlib_packages(self):
incorrect_version_error = ValueError(
f"Incorrect Python version {'.'.join([str(x) for x in sys.version_info[0:3]])}. Only 3.7, 3.8, 3.9 and 3.10 are currently supported."
)
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ mkdocs = "^1.3.0"
mkdocs-material = "^8.3.8"
mkdocstrings = "^0.18.1"
mypy = "^0.961"
types-toml = "^0.10.8"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 043ec87

Please sign in to comment.