Skip to content

Commit 1f0835e

Browse files
CSC-3049 Upgrade Python to version 3.9
1 parent 79e047c commit 1f0835e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

django_permanent/signals.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from django.dispatch import Signal
22

3-
pre_restore = Signal(providing_args=['instance'])
4-
post_restore = Signal(providing_args=['instance'])
3+
pre_restore = Signal()
4+
post_restore = Signal()

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='django-permanent',
17-
version='1.1.8',
17+
version='1.1.9',
1818
description='Yet another approach to provide soft (logical) delete or masking (thrashing) django models instead of deleting them physically from db.',
1919
author='Mikhail Antonov',
2020
author_email='atin65536@gmail.com',
@@ -32,6 +32,7 @@
3232
"Programming Language :: Python :: 2.7",
3333
"Programming Language :: Python :: 3.4",
3434
"Programming Language :: Python :: 3.5",
35+
"Programming Language :: Python :: 3.9",
3536
"Development Status :: 4 - Beta",
3637
"License :: OSI Approved :: BSD License",
3738
],

0 commit comments

Comments
 (0)