New issue 228: tox doesn't work with older pip versions like 1.4.1 https://bitbucket.org/hpk42/tox/issue/228/tox-doesnt-work-with-older-pip-versions
Marc-Andre Lemburg: When running bin/tox with pip 1.4.1 (and pyrun) you get: Could not run 'bin/tox': No module named req_file Looking into the code, this line is causing it: lib/python2.7/site-packages/tox/_config.py: -- from pip.req.req_file import parse_requirements The current pip does come with a req_file module. It was added in Jan 2014 and released in version 6.0 of pip. The setup.py of tox does not define a dependency on pip: https://bitbucket.org/hpk42/tox/src/aa5b7ce560ca7cc27ed609fad8d2678a9e6836ac/setup.py?at=default I guess it would be good to define the minimum version with which tox works. _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit