From 0c0a14bdbda65575e89065c00bc55514100e6232 Mon Sep 17 00:00:00 2001 From: mweickum <31274288+mweickum@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:21:04 +0100 Subject: [PATCH 1/2] Edit requirements to avoid strange dependencies Using this package in a larger project leaded to strange dependencies. Especially the django 4 requirement was a problem for me. The widgets seems to work with django 3. --- requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8d82744..0d63f38 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -black==22.12.0 -Django==4.1.4 -Faker==16.6.1 -pylint==2.15.9 -pylint-django==2.5.3 +black>=22.12.0 +Django>=3.2.18 +Faker>=16.6.1 +pylint>=2.15.9 +pylint-django>=2.5.3 From b77f6a09aa51a6d1f40577b4970adcd85b50bf77 Mon Sep 17 00:00:00 2001 From: mweickum <31274288+mweickum@users.noreply.github.com> Date: Mon, 20 Nov 2023 20:07:03 +0100 Subject: [PATCH 2/2] widget is also working with Django 3.2.18 --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 060f15e..f37a33b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,6 @@ include_package_data = true packages = find: python_requires = >=3.8 install_requires = - Django >= 4.1 + Django >= 3.2.18 setup_requires = - Django >= 4.1 + Django >= 3.2.18