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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Some reasons you might want to use REST framework:
# Requirements

* Python 3.10+
* Django 5.2, 6.0
* Django 5.2, 6.0, 6.1
Comment thread
browniebroke marked this conversation as resolved.

We **highly recommend** and only officially support the latest patch release of
each Python and Django series.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Some reasons you might want to use REST framework:

REST framework requires the following:

* Django (5.2, 6.0)
* Django (5.2, 6.0, 6.1)
* Python (3.10, 3.11, 3.12, 3.13, 3.14)

We **highly recommend** and only officially support the latest patch release of
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Framework :: Django :: 6.1",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
Expand Down Expand Up @@ -71,6 +72,7 @@ optional = [
]
django52 = [ "django>=5.2,<6.0" ]
django60 = [ "django>=6.0,<6.1" ]
django61 = [ "django>=6.1rc1,<6.2" ]
djangomain = [ "django @ https://github.com/django/django/archive/main.tar.gz" ]

[tool.setuptools]
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
envlist =
{py310}-{django52}
{py311}-{django52}
{py312}-{django52,django60,djangomain}
{py313}-{django52,django60,djangomain}
{py314}-{django52,django60,djangomain}
{py312}-{django52,django60,django61,djangomain}
{py313}-{django52,django60,django61,djangomain}
{py314}-{django52,django60,django61,djangomain}
base
dist
docs
Expand All @@ -22,6 +22,7 @@ dependency_groups =
optional
django52: django52
django60: django60
django61: django61
djangomain: djangomain

[testenv:base]
Expand Down