Skip to content

Commit 545e125

Browse files
committed
Update minimum required version of optional dependencies
1 parent b45a9c3 commit 545e125

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ any parts of the framework not mentioned in the documentation should generally b
1717
### Changed
1818

1919
* 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.
2124

2225
### Removed
2326

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ We **highly** recommend and only officially support the latest patch release of
9696

9797
Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
9898

99+
For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions might work as well.
100+
99101
------------
100102
Installation
101103
------------

docs/getting-started.md

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ We **highly** recommend and only officially support the latest patch release of
5959

6060
Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
6161

62+
For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions might work as well.
63+
6264
## Installation
6365

6466
Install using `pip`...

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ def get_package_data(package):
101101
"django>=2.2,<4.1",
102102
],
103103
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"],
107107
},
108108
setup_requires=wheel,
109109
python_requires=">=3.6",

0 commit comments

Comments
 (0)