diff options
author | Kliment Yanev <kliment.yanev@gmail.com> | 2017-09-18 10:23:08 +0200 |
---|---|---|
committer | Kliment Yanev <kliment.yanev@gmail.com> | 2017-09-18 10:23:08 +0200 |
commit | 5cf4124035e363ad41ff9539acd691f107a13066 (patch) | |
tree | 47765050b272dce8b2d6f7e98852b3b5cba870c2 | |
parent | 1cb6ec667a43c98e252a2c215487656c29cc5e2a (diff) | |
download | gerbonara-5cf4124035e363ad41ff9539acd691f107a13066.tar.gz gerbonara-5cf4124035e363ad41ff9539acd691f107a13066.tar.bz2 gerbonara-5cf4124035e363ad41ff9539acd691f107a13066.zip |
Remove references to scipy from travis config and setup.py
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a419b28..b8cf3d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ python: # command to install dependencies
install:
- - "pip install --only-binary=scipy -r requirements.txt"
+ - "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
- "pip install coveralls"
@@ -39,7 +39,7 @@ METADATA = { } SETUPTOOLS_METADATA = { - 'install_requires': ['cairocffi==0.6', 'scipy'], + 'install_requires': ['cairocffi==0.6'], } |