From e6140c28259e8212d7d25bb97cde8d5d613acafc Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Tue, 14 Dec 2021 21:05:33 +0400 Subject: [PATCH] Set minimum required version of inflection to 0.5.0 --- CHANGELOG.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2fee4a2..da407328 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ 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. ### Removed diff --git a/setup.py b/setup.py index 482d7b22..b838644b 100755 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def get_package_data(package): "Topic :: Software Development :: Libraries :: Python Modules", ], install_requires=[ - "inflection>=0.3.0", + "inflection>=0.5.0", "djangorestframework>=3.12,<3.13", "django>=2.2,<4.1", ],