Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 10 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
]


Expand Down