Skip to content

Commit 8d209d9

Browse files
slivercn2ygk
andauthored
Increase required version of optional Polymorphic Models for Django (#1289)
Co-authored-by: Alan Crosswell <[email protected]>
1 parent e9a7f5f commit 8d209d9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ any parts of the framework not mentioned in the documentation should generally b
2121
This adds full support for using multipart field names for includes while configuring `JSON_API_FORMAT_FIELD_NAMES`.
2222
* Ensured that sparse fieldset fully supports `JSON_API_FORMAT_FIELD_NAMES`.
2323

24+
### Changed
25+
26+
* Set minimum required version of optional Polymorphic Models for Django to 4.0.0.
27+
2428
### Removed
2529

2630
* Removed support for Python 3.8.

requirements/requirements-optionals.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ django-filter==24.3
22
# once next version has been released (>3.1.0) this
33
# should be set to pinned version again
44
# see https://github.com/django-polymorphic/django-polymorphic/pull/541
5-
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master # pyup: ignore
5+
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master # pyup: ignore

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def get_package_data(package):
110110
"django>=4.2",
111111
],
112112
extras_require={
113-
"django-polymorphic": ["django-polymorphic>=3.0"],
113+
"django-polymorphic": ["django-polymorphic>=4.0.0"],
114114
"django-filter": ["django-filter>=2.4"],
115115
},
116116
setup_requires=wheel,

0 commit comments

Comments
 (0)