Skip to content

Commit f73b2a4

Browse files
authored
Merge pull request #13 from kraken-tech/update/add-support-for-python-3.12
2 parents 7c3bc1d + e165df0 commit f73b2a4

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Further use cases are documented in the tests, see [**here**][tests] for more us
3434

3535
This package supports:
3636

37-
- Python 3.10, 3.11
38-
- Django 3.2, 4.0, 4.1, 4.2, 5.0
37+
- Python 3.10, 3.11, 3.12
38+
- Django 3.2, 4.0, 4.1, 4.2, 5.0, 5.1
3939
- Django Rest Framework 3.12, 3.13, 3.14, 3.15
4040

4141
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)

noxfile.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ def temp_lock_file() -> Generator[IO[str], None, None]:
4444
("3.11", "django>=4.2,<4.3", "djangorestframework>=3.15,<3.16"),
4545
("3.11", "django>=5.0,<5.1", "djangorestframework>=3.14,<3.15"),
4646
("3.11", "django>=5.0,<5.1", "djangorestframework>=3.15,<3.16"),
47+
("3.11", "django>=5.1,<5.2", "djangorestframework>=3.15,<3.16"),
48+
# Python 3.12
49+
("3.12", "django>=4.1,<4.2", "djangorestframework>=3.14,<3.15"),
50+
("3.12", "django>=4.1,<4.2", "djangorestframework>=3.15,<3.16"),
51+
("3.12", "django>=4.2,<4.3", "djangorestframework>=3.14,<3.15"),
52+
("3.12", "django>=4.2,<4.3", "djangorestframework>=3.15,<3.16"),
53+
("3.12", "django>=5.0,<5.1", "djangorestframework>=3.14,<3.15"),
54+
("3.12", "django>=5.0,<5.1", "djangorestframework>=3.15,<3.16"),
55+
("3.12", "django>=5.1,<5.2", "djangorestframework>=3.14,<3.15"),
56+
("3.12", "django>=5.1,<5.2", "djangorestframework>=3.15,<3.16"),
4757
]
4858

4959

0 commit comments

Comments
 (0)