1
0
forked from VimPlug/jedi

Merge pull request #711 from WoLpH/python35

Enabled python 3.5 support
This commit is contained in:
Dave Halter
2016-03-31 10:47:31 +02:00
2 changed files with 10 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ env:
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=cov
- TOXENV=sith
@@ -14,8 +15,9 @@ matrix:
- env: TOXENV=cov
- env: TOXENV=sith
- env: TOXENV=pypy
python: 3.5
install:
- pip install --quiet --use-mirrors tox
- pip install --quiet tox 'virtualenv<14.0.0' 'pip<8.0.0'
script:
- tox
after_script:
@@ -23,3 +25,4 @@ after_script:
pip install --quiet --use-mirrors coveralls;
coveralls;
fi

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py32, py33, py34
envlist = py26, py27, py32, py33, py34, py35
[testenv]
deps =
pytest>=2.3.5
@@ -18,6 +18,11 @@ commands =
deps =
unittest2
{[testenv]deps}
[testenv:py32]
deps =
pip<8.0.0
virtualenv<14.0.0
{[testenv]deps}
[testenv:cov]
deps =
coverage