From 4ed02c8f22e57ee900bdb25e3f01c11e76706c6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Aug 2022 15:16:18 +0000 Subject: [PATCH] Update django requirement Updates the requirements on [django](https://github.com/django/django) to permit the latest version. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/2.2...4.1) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 5078b8f05..7b5e0c470 100644 --- a/setup.py +++ b/setup.py @@ -55,19 +55,20 @@ def run(self): install_requires=[ 'celery~=5.0', 'channels>=2.0', - 'Django~=2.2', + 'Django>=2.2,!=3.0.0.a,!=3.1.0.a,<5.0', 'django-ajax-selects~=1.9', 'django-ical~=1.7', 'django-mptt~=0.10', - 'django-paypal @ git+https://github.com/cma2819/django-paypal.git', + 'django-paypal~=1.1', 'django-post-office~=3.2', - 'django-timezone-field>=3.1,<5.0', + 'django-timezone-field>=3.1,<6.0', 'djangorestframework~=3.9', 'python-dateutil~=2.8.1', 'pytz>=2019.3', + 'requests~=2.27.1', 'webpack-manifest~=2.1', ], - python_requires='>=3.6, <3.8', + python_requires='>=3.7, <3.11', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', @@ -77,8 +78,10 @@ def run(self): 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ],