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.
types-requests
1 parent aee3830 commit 19633caCopy full SHA for 19633ca
.github/workflows/ci.yml
@@ -50,7 +50,7 @@ jobs:
50
51
- name: MyPy
52
run: |
53
- python -m pip install mypy
+ python -m pip install -e .[typing]
54
mypy snowplow_tracker --exclude '/test'
55
56
- name: Demo
setup.py
@@ -66,7 +66,12 @@
66
],
67
install_requires=[
68
"requests>=2.25.1,<3.0",
69
- "types-requests>=2.25.1,<3.0",
70
"typing_extensions>=3.7.4",
71
+ extras_require={
72
+ "typing": [
73
+ "mypy>=0.971",
74
+ "types-requests>=2.25.1,<3.0",
75
+ ],
76
+ },
77
)
0 commit comments