diff options
| author | Glandos <bugs-github@antipoul.fr> | 2021-04-06 22:49:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-06 22:49:49 +0200 |
| commit | 3ae54c13f94b841ad8e31f5bcce16456404a4ce3 (patch) | |
| tree | d4941eced9b4bcd8e5744d21ed243dd73868da61 /.travis.yml | |
| parent | ce1c2c24a664fa4d152be7610a18833de1b07983 (diff) | |
| download | ihatemoney-mirror-3ae54c13f94b841ad8e31f5bcce16456404a4ce3.zip ihatemoney-mirror-3ae54c13f94b841ad8e31f5bcce16456404a4ce3.tar.gz ihatemoney-mirror-3ae54c13f94b841ad8e31f5bcce16456404a4ce3.tar.bz2 | |
Fix travis build with python3.6 (#734)
Upgrade pip **and** virtualenv, as mentioned in https://travis-ci.community/t/pip-install-cryptography-fails-on-py36/11233/4
Tox is building its own virtualenv, so the image from TravisCI might not be enough for pip to find the wheel.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 0553343..cc4db2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,5 +6,7 @@ python: - "3.8" - "3.9" script: tox +before_install: + - python -m pip install --upgrade pip virtualenv install: - pip install tox-travis |
