From c92c7a1c6620dcce4a60a7ed243058f65a350abd Mon Sep 17 00:00:00 2001 From: KimSia Sim <245021+simkimsia@users.noreply.github.com> Date: Tue, 21 Nov 2023 21:31:46 +0800 Subject: [PATCH] fix: include django-extensions as required installations (#256) Because autoslugfield requires django-extensions as indicated here https://github.com/bennylope/django-organizations/blob/2dd044956cf03dad9c8c4954ba325d2769fe3643/docs/getting_started.rst#auto-slug-field and the minimum version is taken from https://github.com/bennylope/django-organizations/blob/2dd044956cf03dad9c8c4954ba325d2769fe3643/requirements-test.txt#L10 --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 16f3b8a..10bb67a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,6 +32,7 @@ package_dir= install_requires = six Django>=3.2.0 + django-extensions>=2.0.8 python_requires = >=3.8 [options.packages.find]