We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
types-requests
1 parent b75934a commit 2045564Copy full SHA for 2045564
.github/workflows/ci.yml
@@ -43,7 +43,7 @@ jobs:
43
44
- name: MyPy
45
run: |
46
- python -m pip install mypy
+ python -m pip install -e .[typing]
47
mypy snowplow_tracker --exclude '/test'
48
49
- name: Demo
setup.py
@@ -68,7 +68,12 @@
68
],
69
install_requires=[
70
"requests>=2.25.1,<3.0",
71
- "types-requests>=2.25.1,<3.0",
72
"typing_extensions>=3.7.4",
73
+ extras_require={
74
+ "typing": [
75
+ "mypy>=0.971",
76
+ "types-requests>=2.25.1,<3.0",
77
+ ],
78
+ },
79
)
0 commit comments