From 6e22a6f33e94cc546e031fdd9abd436b21ecc492 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Tue, 30 Apr 2024 22:52:57 +0300 Subject: [PATCH] Version 3.15.0 release (#605) * Version 3.15.0 release * Update setup.py comment & compatible-mypy version --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index db60d14c..c9583ad4 100644 --- a/setup.py +++ b/setup.py @@ -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"], }