Skip to content

Commit

Permalink
fixup: upgrade mypy when able
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous committed Aug 13, 2023
1 parent 296bc39 commit 7b24491
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 3 deletions.
43 changes: 42 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ poethepoet = "0.19.0"

[tool.poetry.group.test.dependencies]
black = { version = "23.7.0", python = ">=3.8" }
coverage = { extras = ["toml"], version = "7.2.7" }
mypy = "1.4.1"
coverage = { version = "7.2.7", extras = ["toml"] }
mypy = [
{ version = "1.4.1", python = "<3.8" },
{ version = "1.5.0", python = ">=3.8" },
]
pytest = "7.4.0"
pytest-asyncio = "0.21.1"
pytest-mypy-plugins = "2.0.0"
Expand Down

0 comments on commit 7b24491

Please sign in to comment.