diff --git a/README.md b/README.md index 932fd70..d8c5976 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ Further use cases are documented in the tests, see [**here**][tests] for more us This package supports: -- Python 3.10, 3.11 -- Django 3.2, 4.0, 4.1, 4.2, 5.0 +- Python 3.10, 3.11, 3.12 +- Django 3.2, 4.0, 4.1, 4.2, 5.0, 5.1 - Django Rest Framework 3.12, 3.13, 3.14, 3.15 For an exact list of tested version combinations, see the `valid_version_combinations` set in the [noxfile](https://github.com/kraken-tech/django-rest-framework-recursive/blob/master/noxfile.py) diff --git a/noxfile.py b/noxfile.py index fe5253e..ecea008 100644 --- a/noxfile.py +++ b/noxfile.py @@ -44,6 +44,16 @@ def temp_lock_file() -> Generator[IO[str], None, None]: ("3.11", "django>=4.2,<4.3", "djangorestframework>=3.15,<3.16"), ("3.11", "django>=5.0,<5.1", "djangorestframework>=3.14,<3.15"), ("3.11", "django>=5.0,<5.1", "djangorestframework>=3.15,<3.16"), + ("3.11", "django>=5.1,<5.2", "djangorestframework>=3.15,<3.16"), + # Python 3.12 + ("3.12", "django>=4.1,<4.2", "djangorestframework>=3.14,<3.15"), + ("3.12", "django>=4.1,<4.2", "djangorestframework>=3.15,<3.16"), + ("3.12", "django>=4.2,<4.3", "djangorestframework>=3.14,<3.15"), + ("3.12", "django>=4.2,<4.3", "djangorestframework>=3.15,<3.16"), + ("3.12", "django>=5.0,<5.1", "djangorestframework>=3.14,<3.15"), + ("3.12", "django>=5.0,<5.1", "djangorestframework>=3.15,<3.16"), + ("3.12", "django>=5.1,<5.2", "djangorestframework>=3.14,<3.15"), + ("3.12", "django>=5.1,<5.2", "djangorestframework>=3.15,<3.16"), ]