Skip to content

Commit f948c91

Browse files
committed
Looks like we actually support 3.3.
1 parent 5ee534e commit f948c91

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ matrix:
1515
allow_failures:
1616
# Allow failures for unreleased Django version
1717
- env: DJANGO=https://www.djangoproject.com/download/1.7b3/tarball/
18-
# Allow failures for Python 3.3
19-
- python: "3.3"
2018
exclude:
2119
# Django 1.4 and 1.5 do not fully support Python 3.3
2220
- env: DJANGO=Django==1.4.12

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ models.py::
6464

6565
Compatibility
6666
=============
67-
Currently Django 1.4 through 1.6 is maintained for Python 2.6 and 2.7.
67+
Currently Django 1.4 through 1.6 is maintained for Python 2.6, 2.7 and 3.3.
6868

6969
Admin integration
7070
=================

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
'License :: OSI Approved :: GNU Affero General Public License v3',
3535
'Operating System :: OS Independent',
3636
'Programming Language :: Python',
37+
'Programming Language :: Python :: 2',
38+
'Programming Language :: Python :: 2.6',
39+
'Programming Language :: Python :: 2.7',
40+
'Programming Language :: Python :: 3',
41+
'Programming Language :: Python :: 3.3',
3742
],
3843
test_suite='setuptest.setuptest.SetupTestSuite',
3944
tests_require=(

0 commit comments

Comments
 (0)