Python 3.2 support confirmed.
This commit is contained in:
@@ -2,6 +2,7 @@ language: python
|
|||||||
python:
|
python:
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
|
- "3.2"
|
||||||
- "3.3"
|
- "3.3"
|
||||||
env:
|
env:
|
||||||
- DJANGO=django==1.4.5
|
- DJANGO=django==1.4.5
|
||||||
@@ -10,6 +11,8 @@ matrix:
|
|||||||
exclude:
|
exclude:
|
||||||
- python: "3.3"
|
- python: "3.3"
|
||||||
env: DJANGO=django==1.4.5
|
env: DJANGO=django==1.4.5
|
||||||
|
- python: "3.2"
|
||||||
|
env: DJANGO=django==1.4.5
|
||||||
install:
|
install:
|
||||||
- "pip install $DJANGO --use-mirrors"
|
- "pip install $DJANGO --use-mirrors"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ Changelog
|
|||||||
Version 0.5 (dev)
|
Version 0.5 (dev)
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
* Add Python 3 support
|
* Add Python 3.2 and 3.3 support
|
||||||
* Fix errors with ContentType objects that don't refer to an existing model.
|
* Fix errors with ContentType objects that don't refer to an existing model.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ The Python versions need to be installed at your system.
|
|||||||
On Linux, download the versions at http://www.python.org/download/releases/.
|
On Linux, download the versions at http://www.python.org/download/releases/.
|
||||||
On MacOS X, use Homebrew_ to install other Python versions.
|
On MacOS X, use Homebrew_ to install other Python versions.
|
||||||
|
|
||||||
We currently support Python 2.6, 2.7 and 3.3.
|
We currently support Python 2.6, 2.7, 3.2 and 3.3.
|
||||||
|
|
||||||
|
|
||||||
Example project
|
Example project
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist=
|
envlist=
|
||||||
py33-django15,
|
py33-django15,
|
||||||
|
py32-django15,
|
||||||
py26-django15,
|
py26-django15,
|
||||||
py27-django15,
|
py27-django15,
|
||||||
py26-django14,
|
py26-django14,
|
||||||
@@ -37,3 +38,8 @@ basepython=python3.3
|
|||||||
deps=
|
deps=
|
||||||
django==1.5
|
django==1.5
|
||||||
|
|
||||||
|
[testenv:py32-django15]
|
||||||
|
basepython=python3.2
|
||||||
|
deps=
|
||||||
|
django==1.5
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user