Skip to content

Commit e009563

Browse files
committed
Increase required version of optional Polymorphic Models for Django
1 parent 7bb4c08 commit e009563

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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.
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
django-filter==24.3
2-
# once next version has been released (>3.1.0) this
3-
# should be set to pinned version again
4-
# see https://github.com/django-polymorphic/django-polymorphic/pull/541
5-
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master # pyup: ignore
2+
django-polymorphic==4.1.0
63
pyyaml==6.0.2
74
uritemplate==4.1.1

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
"openapi": ["pyyaml>=5.4", "uritemplate>=3.0.1"],
116116
},

0 commit comments

Comments
 (0)