You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-trezor/.travis.yml

31 lines
520 B
YAML

8 years ago
language: python
# Runs jobs on container based infrastructure
sudo: false
# Saves pip downloads/wheels between builds
cache:
directories:
- $HOME/.cache/pip
8 years ago
addons:
apt:
packages:
- libudev-dev
- libusb-1.0-0-dev
8 years ago
python:
- "2.7"
- "3.4"
- "3.5"
8 years ago
8 years ago
before_install:
- pip install setuptools --upgrade
8 years ago
install:
# Optimisation: build requirements as wheels, which get cached by Travis
- pip install "pip>=7.0" wheel
script:
- python setup.py install