mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-30 20:18:11 +00:00
* Set up Travis to run the python tests. * np.matmul requires Numpy 1.10.0 * Extract python dependencies into requirements.txt
11 lines
186 B
YAML
11 lines
186 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install --upgrade pip
|
|
- pip install -U -r python/requirements.txt
|
|
|
|
script:
|
|
- cd python && python setup.py develop test
|