mirror of
https://github.com/jazzband/django-authority.git
synced 2026-05-18 04:21:07 +00:00
refs #12: We now support Python 3.3
This commit is contained in:
parent
d07d8b6f90
commit
013d2af2b1
2 changed files with 5 additions and 1 deletions
3
README
3
README
|
|
@ -58,6 +58,9 @@ Changelog:
|
|||
* It is now possible to minimize the number of queries when using
|
||||
django-authority by caching the results of the Permission query. This can be
|
||||
done by adding ``AUTHORITY_USE_SMART_CACHE = True`` to your settings.py
|
||||
* Confirmed support (via travis ci) for all combinations of Python 2.6,
|
||||
Python2.7 and Django 1.3, Django 1.4, Django 1.5. Added Python 3.3 support
|
||||
for Django 1.5
|
||||
|
||||
|
||||
0.4 (2010-01-15):
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -7,7 +7,7 @@ def read(fname):
|
|||
|
||||
setup(
|
||||
name='django-authority',
|
||||
version='0.4',
|
||||
version='0.5',
|
||||
description=(
|
||||
"A Django app that provides generic per-object-permissions "
|
||||
"for Django's auth app."
|
||||
|
|
@ -28,6 +28,7 @@ setup(
|
|||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 1.3',
|
||||
'Framework :: Django :: 1.4',
|
||||
|
|
|
|||
Loading…
Reference in a new issue