mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Pygments-2.0 will drop Python-3.2. The snowballstemmer package that is referred from sphinx-1.3 (that is merged at pull request #214) has not supported Python-3.2. We decided to drop the Python-3.2. see also https://bitbucket.org/birkenfeld/sphinx/pull-request/243/native-py2-py3-support-without-2to3-refs
42 lines
577 B
INI
42 lines
577 B
INI
[tox]
|
|
envlist=py26,py27,py33,py34,pypy,du11,du10
|
|
|
|
[testenv]
|
|
deps=
|
|
nose
|
|
sqlalchemy
|
|
whoosh
|
|
setenv =
|
|
BUILD_TEST_PATH = {envdir}/tests
|
|
commands=
|
|
{envpython} tests/run.py {posargs}
|
|
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
|
|
|
|
[testenv:py26]
|
|
deps=
|
|
mock
|
|
{[testenv]deps}
|
|
|
|
[testenv:py27]
|
|
deps=
|
|
mock
|
|
{[testenv]deps}
|
|
|
|
[testenv:pypy]
|
|
deps=
|
|
mock
|
|
simplejson
|
|
{[testenv]deps}
|
|
|
|
[testenv:du10]
|
|
deps=
|
|
mock
|
|
docutils==0.10
|
|
{[testenv]deps}
|
|
|
|
[testenv:du11]
|
|
deps=
|
|
mock
|
|
docutils==0.11
|
|
{[testenv]deps}
|