File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ any parts of the framework not mentioned in the documentation should generally b
17
17
### Changed
18
18
19
19
* Adjusted to only use f-strings for slight performance improvement.
20
- * Set minimum required version of inflection to 0.5.0.
20
+ * Set minimum required version of inflection to 0.5.
21
+ * Set minimum required version of Django Filter to 2.4.
22
+ * Set minimum required version of Polymorphic Models for Django to 3.0.
23
+ * Set minimum required version of PyYAML to 5.4.
21
24
22
25
### Removed
23
26
Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ We **highly** recommend and only officially support the latest patch release of
96
96
97
97
Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
98
98
99
+ For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions might work as well.
100
+
99
101
------------
100
102
Installation
101
103
------------
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ We **highly** recommend and only officially support the latest patch release of
59
59
60
60
Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
61
61
62
+ For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions might work as well.
63
+
62
64
## Installation
63
65
64
66
Install using ` pip ` ...
Original file line number Diff line number Diff line change @@ -101,9 +101,9 @@ def get_package_data(package):
101
101
"django>=2.2,<4.1" ,
102
102
],
103
103
extras_require = {
104
- "django-polymorphic" : ["django-polymorphic>=2 .0" ],
105
- "django-filter" : ["django-filter>=2.0 " ],
106
- "openapi" : ["pyyaml>=5.3 " , "uritemplate>=3.0.1" ],
104
+ "django-polymorphic" : ["django-polymorphic>=3 .0" ],
105
+ "django-filter" : ["django-filter>=2.4 " ],
106
+ "openapi" : ["pyyaml>=5.4 " , "uritemplate>=3.0.1" ],
107
107
},
108
108
setup_requires = wheel ,
109
109
python_requires = ">=3.6" ,
You can’t perform that action at this time.
0 commit comments