refs #12: We now support Python 3.3

This commit is contained in:
Jason Ward 2013-03-18 19:12:14 -04:00
parent d07d8b6f90
commit 013d2af2b1
2 changed files with 5 additions and 1 deletions

3
README
View file

@ -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):

View file

@ -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',