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 c6a2575 commit a7561a0Copy full SHA for a7561a0
.github/workflows/ci.yml
@@ -35,10 +35,7 @@ jobs:
35
- name: Install dependencies
36
run: |
37
python -m pip install --upgrade pip
38
- python -m pip install .
39
- python -m pip install mypy
40
- # vobject does fancy dynamic stuff that is hard to type-check
41
- python -m pip install types-atomicwrites # types-vobject
+ python -m pip install .[typing]
42
- name: Run the type checker
43
run: mypy
44
pyproject.toml
@@ -37,6 +37,12 @@ doc = [
'sphinx-autoapi',
'sphinx-autodoc-typehints',
]
+typing = [
+ "mypy",
+ "types-atomicwrites",
+ # vobject does fancy dynamic stuff that is hard to type-check
+ #"types-vobject",
45
+]
46
47
[project.urls]
48
homepage = "https://github.com/lucc/khard"
0 commit comments