From c58b606dc8516510558a963202c00bbd21f22927 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Mon, 22 May 2023 21:38:51 +0400 Subject: [PATCH] Removed upper bounds of Django and DRF We only set upper bounds in cases a release is actually breaking. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6ebee0d5..7d01a919 100755 --- a/setup.py +++ b/setup.py @@ -97,8 +97,8 @@ def get_package_data(package): ], install_requires=[ "inflection>=0.5.0", - "djangorestframework>=3.13,<3.15", - "django>=3.2,<4.3", + "djangorestframework>=3.13", + "django>=3.2", ], extras_require={ "django-polymorphic": ["django-polymorphic>=3.0"],