From 357d473d4346ad5ac0c9384b5d0913e483656d4b Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Wed, 13 Mar 2024 13:25:46 +0500 Subject: [PATCH] build: adding python3.12 support. --- CHANGELOG.rst | 7 +++++++ setup.py | 2 +- user_tasks/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 88860b36..335a4c83 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,13 @@ Change Log Unreleased ~~~~~~~~~~ +[3.2.0] - 2024-03-12 +~~~~~~~~~~~~~~~~~~~~ + +Added ++++++ +* Adding python 3.12 support. +* Removed django32 support. [3.1.0] - 2023-07-21 ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index fb3418a8..5ac6cf2c 100644 --- a/setup.py +++ b/setup.py @@ -119,12 +119,12 @@ def is_requirement(line): classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django', - 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.12', ], ) diff --git a/user_tasks/__init__.py b/user_tasks/__init__.py index 3bcf3a89..32102bd5 100644 --- a/user_tasks/__init__.py +++ b/user_tasks/__init__.py @@ -4,7 +4,7 @@ from django.dispatch import Signal -__version__ = '3.1.0' +__version__ = '3.2.0' # This signal is emitted when a user task reaches any final state: