We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8869eef commit 6e22a6fCopy full SHA for 6e22a6f
setup.py
@@ -20,16 +20,16 @@ def find_stub_files(name: str) -> List[str]:
20
readme = f.read()
21
22
dependencies = [
23
- "django-stubs>=4.2.7",
+ "django-stubs>=5.0.0",
24
"typing-extensions>=3.10.0",
25
"requests>=2.0.0",
26
"types-requests>=0.1.12",
27
"types-PyYAML>=5.4.3",
28
]
29
30
-# Keep compatible-mypy major.minor version pinned to what we use in CI (requirements.txt)
+# Keep compatible-mypy major.minor version pinned to what latest django-stubs release uses.
31
extras_require = {
32
- "compatible-mypy": ["mypy>=1.7,<1.11", "django-stubs[compatible-mypy]"],
+ "compatible-mypy": ["mypy~=1.10.0", "django-stubs[compatible-mypy]"],
33
"coreapi": ["coreapi>=2.0.0"],
34
"markdown": ["types-Markdown>=0.1.5"],
35
}
0 commit comments