diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2016-11-18 08:26:06 -0500 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2016-11-18 08:26:06 -0500 |
commit | c1b29035218467b496fffed76ea85390461150c7 (patch) | |
tree | 0f9df38f0369902c55be3e801602e8e0c1866025 /.travis.yml | |
parent | 845737ebd85b8907d21a33b2874e83f7bfd7dadd (diff) | |
download | gerbonara-c1b29035218467b496fffed76ea85390461150c7.tar.gz gerbonara-c1b29035218467b496fffed76ea85390461150c7.tar.bz2 gerbonara-c1b29035218467b496fffed76ea85390461150c7.zip |
Try using wheel for scipy
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 0b3bd80..a419b28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ language: python
python:
- "2.7"
-# - "3.3"
+ - "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- - "pip install -r requirements.txt"
+ - "pip install --only-binary=scipy -r requirements.txt"
- "pip install -r test-requirements.txt"
- "pip install coveralls"
|