From 329bae109ae195fa10ff25230c2c7a8ff4a2c75d Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Sat, 13 May 2023 12:12:30 +0300 Subject: [PATCH] CI: Always use django-stubs from git master --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e70aff5ba..abe2f9c91 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,6 +7,6 @@ djangorestframework==3.14.0 types-pytz==2023.3.0.0 types-requests==2.30.0.0 types-urllib3==1.26.25.13 -django-stubs==4.2.0 +git+https://github.com/typeddjango/django-stubs django-stubs-ext==4.2.0 -e .[compatible-mypy,coreapi,markdown] diff --git a/setup.py b/setup.py index 8dd278999..6bf46aad1 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def find_stub_files(name: str) -> List[str]: ] extras_require = { - "compatible-mypy": ["mypy>=1.2.0,<1.3"], + "compatible-mypy": ["mypy>=1.3.0,<1.4"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], }