Skip to content

Commit 40dc164

Browse files
committed
We support Python 3!
1 parent f70f1e3 commit 40dc164

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
'Framework :: Django',
1919
'License :: OSI Approved :: BSD License',
2020
'Topic :: Software Development :: Testing',
21+
'Programming Language :: Python :: 2',
22+
'Programming Language :: Python :: 3',
2123
],
2224
install_requires=[
2325
'lxml',

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27-1.5,py27-1.4,py27-1.3,docs
2+
envlist = py33-1.5,py27-1.5,py27-1.4,py27-1.3,docs
33

44
[testenv]
55
setenv =
@@ -8,6 +8,11 @@ commands =
88
{envbindir}/django-admin.py test simple --settings=project.settings
99
basepython = python2.7
1010

11+
[testenv:py33-1.5]
12+
basepython = python3.3
13+
deps =
14+
Django==1.5
15+
1116
[testenv:py27-1.5]
1217
deps =
1318
Django==1.5

0 commit comments

Comments
 (0)