jiridanek commented on pull request #1473: URL: https://github.com/apache/qpid-dispatch/pull/1473#issuecomment-1006546728
The last successful travis build is (https://app.travis-ci.com/github/apache/qpid-dispatch/builds/243764990) ``` Collecting tox Downloading tox-3.24.4-py2.py3-none-any.whl (85 kB) |████████████████████████████████| 85 kB 3.8 MB/s Requirement already satisfied: virtualenv in /usr/local/lib/python3.8/dist-packages (20.0.20) Collecting virtualenv Downloading virtualenv-20.10.0-py2.py3-none-any.whl (5.6 MB) |████████████████████████████████| 5.6 MB 27.7 MB/s ``` and the first failing one says there (https://app.travis-ci.com/github/apache/qpid-dispatch/jobs/554082192) ``` 1.63s$ python3 -m pip install --user --upgrade tox virtualenv Requirement already satisfied: tox in /usr/lib/python3/dist-packages (3.13.2) Collecting tox Downloading tox-3.24.5-py2.py3-none-any.whl (85 kB) |████████████████████████████████| 85 kB 3.7 MB/s Requirement already satisfied: virtualenv in /usr/local/lib/python3.8/dist-packages (20.0.20) Collecting virtualenv Downloading virtualenv-20.13.0-py2.py3-none-any.whl (6.5 MB) |████████████████████████████████| 6.5 MB 13.0 MB/s ``` So the most likely culprit is a new version of virtualenv or tox packages. Qpid Proton does not install tox and virtenv with the `--upgrade` flag, so there the passing inall looks like ``` Collecting tox Downloading tox-3.24.5-py2.py3-none-any.whl (85 kB) |████████████████████████████████| 85 kB 7.9 MB/s Requirement already satisfied: virtualenv in /usr/local/lib/python3.8/dist-packages (20.0.20) ``` I think the most reasonable thing is to update .travis.yml to do it the way it works for Proton. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
