diff --git a/README.md b/README.md index 1a36e1dcc..2f34a6901 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ We rely on different `django` and `mypy` versions: | django-stubs | Mypy version | Django version | Django partial support | Python version | |----------------|--------------|----------------|------------------------|----------------| -| (next release) | 1.9.x | 5.0 | 4.2, 4.1 | 3.8 - 3.12 | +| (next release) | 1.10.x | 5.0 | 4.2, 4.1 | 3.8 - 3.12 | | 4.2.7 | 1.7.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 | | 4.2.6 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 | | 4.2.5 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 | diff --git a/requirements.txt b/requirements.txt index 6419ba5f5..5b0a9f73b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ Django==5.0.4; python_version >= '3.10' -e .[redis,compatible-mypy] # Overrides: -mypy==1.9.0 +mypy==1.10.0 diff --git a/setup.py b/setup.py index 8c8bba356..c877d5ec9 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_stub_files(name: str) -> List[str]: # Keep compatible-mypy major.minor version pinned to what we use in CI (requirements.txt) extras_require = { - "compatible-mypy": ["mypy~=1.9.0"], + "compatible-mypy": ["mypy~=1.10.0"], "redis": ["redis"], }