New issue 323: Support for Python 3.2 broken
https://bitbucket.org/hpk42/tox/issues/323/support-for-python-32-broken

Andriy Yurchuk:

I just came across a problem with tox and Python 3.2 that is described here: 
https://github.com/travis-ci/travis-ci/issues/5485
I am running tox by the ShiningPanda Jenkins plugin which installs tox like 
this:

```
#!

[py32] $ /var/lib/jenkins/shiningpanda/jobs/f517a249/tools/bin/python -c 
"import pip; pip.main();" install --upgrade tox
Collecting tox
  Using cached tox-2.3.1-py2.py3-none-any.whl
Collecting virtualenv>=1.11.2 (from tox)
  Using cached virtualenv-15.0.1-py2.py3-none-any.whl
Collecting py>=1.4.17 (from tox)
  Using cached py-1.4.31-py2.py3-none-any.whl
Collecting pluggy<0.4.0,>=0.3.0 (from tox)
  Using cached pluggy-0.3.1-py2.py3-none-any.whl
```
This installs virtualenv version 15.0.1 which comes from the tox's 
[setup.py](https://bitbucket.org/hpk42/tox/src/4dbfb1f1eb86b35cbd2c83461e1e294651e89cf6/setup.py?fileviewer=file-view-default#setup.py-39)
Looks like changing that to `virtualenv<14.0.0` would fix the problem.


_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
https://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to