Skip to content

Update minimum required version of optional dependencies #1031

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ any parts of the framework not mentioned in the documentation should generally b
### Changed

* Adjusted to only use f-strings for slight performance improvement.
* Set minimum required version of inflection to 0.5.0.
* Set minimum required version of inflection to 0.5.
* Set minimum required version of Django Filter to 2.4.
* Set minimum required version of Polymorphic Models for Django to 3.0.
* Set minimum required version of PyYAML to 5.4.

### Removed

Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ We **highly** recommend and only officially support the latest patch release of

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

For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions should work as well.

------------
Installation
------------
Expand Down
2 changes: 2 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ We **highly** recommend and only officially support the latest patch release of

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

For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions should work as well.

## Installation

Install using `pip`...
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def get_package_data(package):
"django>=2.2,<4.1",
],
extras_require={
"django-polymorphic": ["django-polymorphic>=2.0"],
"django-filter": ["django-filter>=2.0"],
"openapi": ["pyyaml>=5.3", "uritemplate>=3.0.1"],
"django-polymorphic": ["django-polymorphic>=3.0"],
"django-filter": ["django-filter>=2.4"],
"openapi": ["pyyaml>=5.4", "uritemplate>=3.0.1"],
},
setup_requires=wheel,
python_requires=">=3.6",
Expand Down