Skip to content

Commit

Permalink
Updated tox configuration, dropped Django 1.0.X and Python 2.4 suppor…
Browse files Browse the repository at this point in the history
…t (too much hassle).
  • Loading branch information
jezdez committed Mar 30, 2011
1 parent 9940240 commit 9d11dcb
Showing 1 changed file with 12 additions and 53 deletions.
65 changes: 12 additions & 53 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,98 +1,57 @@
[tox]
distribute = False
envlist =
py24-1.0.X, py25-1.0.X, py26-1.0.X, py27-1.0.X,
py24-1.1.X, py25-1.1.X, py26-1.1.X, py27-1.1.X,
py24-1.2.X, py25-1.2.X, py26-1.2.X, py27-1.2.X,
py24-1.3.X, py25-1.3.X, py26-1.3.X, py27-1.3.X
py25-1.1.X, py26-1.1.X, py27-1.1.X,
py25-1.2.X, py26-1.2.X, py27-1.2.X,
py25-1.3.X, py26-1.3.X, py27-1.3.X

[testenv]
commands =
python setup.py test

[testenv:py24-1.0.X]
basepython = python2.4
deps =
pysqlite
django==1.0.4

[testenv:py25-1.0.X]
basepython = python2.5
deps =
django==1.0.4

[testenv:py26-1.0.X]
basepython = python2.6
deps =
django==1.0.4

[testenv:py27-1.0.X]
basepython = python2.7
deps =
django==1.0.4


[testenv:py24-1.1.X]
basepython = python2.4
deps =
pysqlite
django==1.1.3

[testenv:py25-1.1.X]
basepython = python2.5
deps =
django==1.1.3
django==1.1.4

[testenv:py26-1.1.X]
basepython = python2.6
deps =
django==1.1.3
django==1.1.4

[testenv:py27-1.1.X]
basepython = python2.7
deps =
django==1.1.3
django==1.1.4


[testenv:py24-1.2.X]
basepython = python2.4
deps =
pysqlite
django==1.2.4

[testenv:py25-1.2.X]
basepython = python2.5
deps =
django==1.2.4
django==1.2.5

[testenv:py26-1.2.X]
basepython = python2.6
deps =
django==1.2.4
django==1.2.5

[testenv:py27-1.2.X]
basepython = python2.7
deps =
django==1.2.4
django==1.2.5


[testenv:py24-1.3.X]
basepython = python2.4
deps =
pysqlite
svn+http://code.djangoproject.com/svn/django/trunk/

[testenv:py25-1.3.X]
basepython = python2.5
deps =
svn+http://code.djangoproject.com/svn/django/trunk/
django==1.3

[testenv:py26-1.3.X]
basepython = python2.6
deps =
svn+http://code.djangoproject.com/svn/django/trunk/
django==1.3

[testenv:py27-1.3.X]
basepython = python2.7
deps =
svn+http://code.djangoproject.com/svn/django/trunk/
django==1.3

0 comments on commit 9d11dcb

Please sign in to comment.