We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72fc947 commit cfe759aCopy full SHA for cfe759a
2 files changed
.github/workflows/build.yml
@@ -27,3 +27,7 @@ jobs:
27
28
- run: pip install --group dev-optional
29
- run: pytest
30
+
31
+ - run: pip install --group typing
32
+ - run: mypy
33
+ - run: ty check
pyproject.toml
@@ -35,6 +35,11 @@ dev-optional = [
35
"numpy",
36
"scipy"
37
]
38
+typing = [
39
+ "mypy",
40
+ "ty",
41
+ {include-group = "dev-optional"}
42
+]
43
44
[tool.pytest.ini_options]
45
asyncio_mode = "auto"
0 commit comments