Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ any parts of the framework not mentioned in the documentation should generally b
### Added

* Added support for Python 3.11.
* Added support for Django 4.2.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Requirements
------------

1. Python (3.7, 3.8, 3.9, 3.10, 3.11)
2. Django (3.2, 4.0, 4.1)
2. Django (3.2, 4.0, 4.1, 4.2)
3. Django REST framework (3.13, 3.14)

We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ like the following:
## Requirements

1. Python (3.7, 3.8, 3.9, 3.10, 3.11)
2. Django (3.2, 4.0, 4.1)
2. Django (3.2, 4.0, 4.1, 4.2)
3. Django REST framework (3.13, 3.14)

We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.
Expand Down
2 changes: 0 additions & 2 deletions example/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@

SECRET_KEY = "abc123"

PASSWORD_HASHERS = ("django.contrib.auth.hashers.UnsaltedMD5PasswordHasher",)

INTERNAL_IPS = ("127.0.0.1",)

JSON_API_FORMAT_FIELD_NAMES = "camelize"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def get_package_data(package):
install_requires=[
"inflection>=0.5.0",
"djangorestframework>=3.13,<3.15",
"django>=3.2,<4.2",
"django>=3.2,<4.3",
],
extras_require={
"django-polymorphic": ["django-polymorphic>=3.0"],
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
py{37,38,39,310}-django32-drf{313,314,master},
py{38,39,310}-django40-drf{313,314,master},
py{38,39,310,311}-django41-drf{314,master},
py{38,39,310,311}-django42-drf{314,master},
black,
docs,
lint
Expand All @@ -11,7 +11,7 @@ envlist =
deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
drf313: djangorestframework>=3.13,<3.14
drf314: djangorestframework>=3.14,<3.15
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
Expand Down Expand Up @@ -54,5 +54,5 @@ ignore_outcome = true
[testenv:py{38,39,310}-django40-drfmaster]
ignore_outcome = true

[testenv:py{38,39,310,311}-django41-drfmaster]
[testenv:py{38,39,310,311}-django42-drfmaster]
ignore_outcome = true