mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-27 14:25:16 +02:00
43 lines
526 B
YAML
43 lines
526 B
YAML
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
language: python
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gfortran
|
|
- libatlas-dev
|
|
- libatlas-base-dev
|
|
- liblapack-dev
|
|
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
|
|
before_install:
|
|
- uname -a
|
|
- free -m
|
|
- df -h
|
|
- ulimit -a
|
|
- pip install -U pip wheel setuptools
|
|
- pip install numpy nose six
|
|
- pip install -v -U scipy
|
|
- python -V
|
|
|
|
install:
|
|
- pip install .
|
|
|
|
script:
|
|
- cd $HOME
|
|
- mkdir empty
|
|
- cd empty
|
|
- nosetests GPy
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|