1
0
mirror of https://github.com/openshift/openshift-ansible.git synced 2026-02-05 06:46:04 +01:00

Upgrade virtualenv in Travis

Older pip in the Travis created virtualenv is not pulling the
cryptography wheel and instead requiring building cryptography.  The
build fails because a Rust compiler does not exist.  Upgrading
virtualenv allows the cryptography wheel to be used.

https://github.com/pyca/cryptography/issues/5771
This commit is contained in:
Russell Teague
2021-06-10 15:00:16 -04:00
parent e1b19c270d
commit c9dc8c36b9

View File

@@ -11,6 +11,9 @@ language: python
python:
- "3.6"
before_install:
- python -m pip install --upgrade virtualenv
install:
- pip install --upgrade pip
- pip install tox-travis