We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb99f7d commit aa82771Copy full SHA for aa82771
.gitignore
@@ -1,5 +1,6 @@
1
.coverage
2
.tox
3
+.idea/
4
docs/_build
5
*.py[co]
6
*.egg-info
caching/__init__.py
@@ -1,4 +1,4 @@
from __future__ import unicode_literals
-VERSION = ('0', '9')
+VERSION = ('0', '9', '1')
__version__ = '.'.join(VERSION)
caching/compat.py
@@ -7,7 +7,7 @@
7
8
if django.VERSION[:2] >= (1, 6):
9
from django.core.cache.backends.base import DEFAULT_TIMEOUT as DJANGO_DEFAULT_TIMEOUT
10
- DEFAULT_TIMEOUT = DJANGO_DEFAULT_TIMEOUT
+ DEFAULT_TIMEOUT = 300 if django.VERSION[:2] == (1, 6) else DJANGO_DEFAULT_TIMEOUT
11
FOREVER = None
12
else:
13
DEFAULT_TIMEOUT = None
0 commit comments