From a5dac4e9a67b5ae9a1e77dd95f7e919d01ff3ae4 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Wed, 15 Mar 2023 17:41:34 +0100 Subject: [PATCH] misc: require django 3.2 (#75442) --- debian/control | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 3ca7df4..33f5778 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Standards-Version: 3.9.1 Package: python3-django-mellon Architecture: all Depends: python3-atomicwrites, - python3-django (>= 2:2.2), + python3-django (>= 2:3.2), python3-isodate, python3-lasso, ${misc:Depends}, diff --git a/setup.py b/setup.py index be777fd..44aeb75 100755 --- a/setup.py +++ b/setup.py @@ -104,7 +104,7 @@ setup( include_package_data=True, packages=find_packages(), install_requires=[ - 'django>=2.2,<3.3', + 'django>=3.2,<3.3', 'requests', 'isodate', 'atomicwrites',