From b2a53b29565f5686dffdef3df49519620aa9609a Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Wed, 26 Apr 2023 21:02:39 +0300 Subject: [PATCH] Run CI with Django 4.2 and declare in package metadata --- django_stubs_ext/setup.py | 1 + requirements.txt | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/django_stubs_ext/setup.py b/django_stubs_ext/setup.py index 8c3d3d1da0..07a1aabca0 100644 --- a/django_stubs_ext/setup.py +++ b/django_stubs_ext/setup.py @@ -43,6 +43,7 @@ "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", ], project_urls={ "Release notes": "https://github.com/typeddjango/django-stubs/releases", diff --git a/requirements.txt b/requirements.txt index 59cb5519cf..858570bdac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,7 @@ pre-commit==2.21.0 pytest==7.3.1 pytest-mypy-plugins==1.10.1 psycopg2-binary +Django==4.2 -e ./django_stubs_ext -e .[compatible-mypy] diff --git a/setup.py b/setup.py index 98afd9f923..ba3f7b7b11 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ def find_stub_files(name: str) -> List[str]: "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", ], project_urls={ "Release notes": "https://github.com/typeddjango/django-stubs/releases",