Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d98e791

Browse files
committed
Added Django support for version 4.1.
1 parent db5cf1c commit d98e791

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

‎CHANGELOG.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ any parts of the framework not mentioned in the documentation should generally b
1515
* Fixed invalid relationship pointer in error objects when field naming formatting is used.
1616
* Properly resolved related resource type when nested source field is defined.
1717

18+
### Added
19+
20+
* Added support for Django 4.1.
21+
1822
### Removed
1923

2024
* Removed support for Django 2.2.

‎README.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Requirements
8989
------------
9090

9191
1. Python (3.7, 3.8, 3.9, 3.10)
92-
2. Django (3.2, 4.0)
92+
2. Django (3.2, 4.0, 4.1)
9393
3. Django REST framework (3.12, 3.13)
9494

9595
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.

‎docs/getting-started.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ like the following:
5252
## Requirements
5353

5454
1. Python (3.7, 3.8, 3.9, 3.10)
55-
2. Django (3.2, 4.0)
55+
2. Django (3.2, 4.0, 4.1)
5656
3. Django REST framework (3.12, 3.13)
5757

5858
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_package_data(package):
9797
install_requires=[
9898
"inflection>=0.5.0",
9999
"djangorestframework>=3.12,<3.14",
100-
"django>=3.2,<4.1",
100+
"django>=3.2,<4.2",
101101
],
102102
extras_require={
103103
"django-polymorphic": ["django-polymorphic>=3.0"],

‎tox.ini‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-django32-drf{312,313,master},
4-
py{38,39,310}-django40-drf{313,master},
4+
py{38,39,310}-django{40,41}-drf{313,master},
55
lint,docs
66

77
[testenv]
88
deps =
99
django32: Django>=3.2,<3.3
10-
django40: Django>=4.0,<5.0
10+
django40: Django>=4.0,<4.1
11+
django41: Django>=4.1,<4.2
1112
drf312: djangorestframework>=3.12,<3.13
1213
drf313: djangorestframework>=3.13,<3.14
1314
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
@@ -44,5 +45,5 @@ deps =
4445
commands =
4546
sphinx-build -W -b html -d docs/_build/doctrees docs docs/_build/html
4647

47-
[testenv:py{37,38,39,310}-django{32,40}-drfmaster]
48+
[testenv:py{37,38,39,310}-django{32,40,41}-drfmaster]
4849
ignore_outcome = true

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /