File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 21
21
22
22
## Django 4.1 support
23
23
24
- The latest release now fully supports Django 4.1.
24
+ The latest release now fully supports Django 4.1, and drops support for Django 2.2 .
25
25
26
26
Our requirements are now:
27
27
Original file line number Diff line number Diff line change @@ -40,8 +40,10 @@ You can determine your currently installed version using `pip show`:
40
40
41
41
Date: 22nd September 2022
42
42
43
+ * Django 2.2 is no longer supported. [[ #8662 ] ( https://github.com/encode/django-rest-framework/pull/8662 )]
44
+ * Django 4.1 compatibility. [[ #8591 ] ( https://github.com/encode/django-rest-framework/pull/8591 )]
45
+ * Add ` --api-version ` CLI option to ` generateschema ` management command. [[ #8663 ] ( https://github.com/encode/django-rest-framework/pull/8663 )]
43
46
* Enforce ` is_valid(raise_exception=False) ` as a keyword-only argument. [[ #7952 ] ( https://github.com/encode/django-rest-framework/pull/7952 )]
44
- * Django 4.1 compatability. [[ #8591 ] ( https://github.com/encode/django-rest-framework/pull/8591 )]
45
47
* Stop calling ` set_context ` on Validators. [[ #8589 ] ( https://github.com/encode/django-rest-framework/pull/8589 )]
46
48
* Return ` NotImplemented ` from ` ErrorDetails.__ne__ ` . [[ #8538 ] ( https://github.com/encode/django-rest-framework/pull/8538 )]
47
49
* Don't evaluate ` DateTimeField.default_timezone ` when a custom timezone is set. [[ #8531 ] ( https://github.com/encode/django-rest-framework/pull/8531 )]
Original file line number Diff line number Diff line change @@ -82,14 +82,13 @@ def get_version(package):
82
82
author_email = '[email protected] ' ,
# SEE NOTE BELOW (*)
83
83
packages = find_packages (exclude = ['tests*' ]),
84
84
include_package_data = True ,
85
- install_requires = ["django>=2.2 " , "pytz" ],
85
+ install_requires = ["django>=3.0 " , "pytz" ],
86
86
python_requires = ">=3.6" ,
87
87
zip_safe = False ,
88
88
classifiers = [
89
89
'Development Status :: 5 - Production/Stable' ,
90
90
'Environment :: Web Environment' ,
91
91
'Framework :: Django' ,
92
- 'Framework :: Django :: 2.2' ,
93
92
'Framework :: Django :: 3.0' ,
94
93
'Framework :: Django :: 3.1' ,
95
94
'Framework :: Django :: 3.2' ,
You can’t perform that action at this time.
0 commit comments