mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 09:22:38 +02:00

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.
12 lines
192 B
YAML
12 lines
192 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
script: tox
|
|
before_install:
|
|
- python -m pip install --upgrade pip virtualenv
|
|
install:
|
|
- pip install tox-travis
|