Skip to content

Commit

Permalink
Version 3.15.0 release (#605)
Browse files Browse the repository at this point in the history
* Version 3.15.0 release
* Update setup.py comment & compatible-mypy version
  • Loading branch information
intgr authored Apr 30, 2024
1 parent 8869eef commit 6e22a6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ def find_stub_files(name: str) -> List[str]:
readme = f.read()

dependencies = [
"django-stubs>=4.2.7",
"django-stubs>=5.0.0",
"typing-extensions>=3.10.0",
"requests>=2.0.0",
"types-requests>=0.1.12",
"types-PyYAML>=5.4.3",
]

# 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.
extras_require = {
"compatible-mypy": ["mypy>=1.7,<1.11", "django-stubs[compatible-mypy]"],
"compatible-mypy": ["mypy~=1.10.0", "django-stubs[compatible-mypy]"],
"coreapi": ["coreapi>=2.0.0"],
"markdown": ["types-Markdown>=0.1.5"],
}
Expand Down

0 comments on commit 6e22a6f

Please sign in to comment.