From 1e0b65cd5cbfc9d56a04c0f8c47ff7e8b8fad32c Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 20 May 2025 05:22:19 +0000 Subject: [PATCH 1/3] Update setup.py --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 428d52f4..83b1aafc 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import re @@ -181,8 +181,8 @@ def extra_args(self): package_data=package_data, zip_safe=False, install_requires=[ - 'celery>=3.1.15,<4.5', - 'django>=1.8', + 'celery>=3.1.26,<4.5', + 'django>=1.11.17,<3.0', ], cmdclass={'test': RunTests, 'quicktest': QuickRunTests, @@ -202,7 +202,9 @@ def extra_args(self): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], From d5e5274c20fff7adc2d0b2793d3f0119d095080e Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 20 May 2025 05:31:14 +0000 Subject: [PATCH 2/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 83b1aafc..9368f373 100755 --- a/setup.py +++ b/setup.py @@ -181,7 +181,7 @@ def extra_args(self): package_data=package_data, zip_safe=False, install_requires=[ - 'celery>=3.1.26,<4.5', + 'celery>=3.1.26,<4.1', 'django>=1.11.17,<3.0', ], cmdclass={'test': RunTests, From c9b349c0f7988bb89463f524b4a1c1709880660d Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 20 May 2025 05:34:01 +0000 Subject: [PATCH 3/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9368f373..48847597 100755 --- a/setup.py +++ b/setup.py @@ -181,7 +181,7 @@ def extra_args(self): package_data=package_data, zip_safe=False, install_requires=[ - 'celery>=3.1.26,<4.1', + 'celery>=3.1.26,<4.1.0', 'django>=1.11.17,<3.0', ], cmdclass={'test': RunTests,