Skip to content
Open
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 @@ -18,8 +18,8 @@ exist without a domain, so you need it "nested" inside the domain.
## Requirements & Compatibility

- Python (3.9, 3.10, 3.11, 3.12, 3.13)
- Django (4.2, 5.0, 5.1)
- Django REST Framework (3.14, 3.15)
- Django (4.2, 5.1, 5.2)
- Django REST Framework (3.15, 3.16)

It may work with lower versions, but since the release **0.94.2** is no more tested on CI for Python 3.8 or lower.<br/>
And since **0.92.1** is no more tested on CI for Pythons 2.7 to 3.5, Django 1.11 to 2.1 or DRF 3.6 to 3.10.<br/>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Nested resources for the Django Rest Framework
## Requirements

- Python (3.8, 3.9, 3.10, 3.11, 3.12)
- Django (4.2, 5.0)
- Django REST Framework (3.14, 3.15)
- Django (4.2, 5.1, 5.2)
- Django REST Framework (3.15, 3.16)

## Installation

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ def get_package_data(package):
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Framework :: Django :: 5.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
Expand Down
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
# see https://docs.djangoproject.com/en/5.1/faq/install/#what-python-version-can-i-use-with-django
envlist =
py{39,310,311,312}-django4.2-drf{3.14,3.15}
py{310,311,312}-django5.0-drf{3.14,3.15}
py{310,311,312,313}-django5.1-drf{3.14,3.15}
py{39,310,311,312}-django4.2-drf{3.15,3.16}
py{310,311,312,313}-django5.1-drf{3.15,3.16}
py{310,311,312,313}-django5.2-drf{3.15,3.16}
py312-mypy

[gh-actions]
Expand All @@ -20,11 +20,11 @@ allowlist_externals = *
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django4.2: Django>=4.2,<4.3
django5.0: Django>=5.0,<5.1
django4.2: Django>=4.2,<5.0
django5.1: Django>=5.1,<5.2
drf3.14: djangorestframework>=3.14,<3.15
django5.2: Django>=5.2,<6.0
drf3.15: djangorestframework>=3.15,<3.16
drf3.16: djangorestframework>=3.16,<3.17
-rrequirements-tox.txt

[testenv:py312-flake8]
Expand Down