Remove references to scipy from travis config and setup.py

This commit is contained in:
Kliment Yanev 2017-09-18 10:23:08 +02:00
parent 1cb6ec667a
commit 5cf4124035
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -39,7 +39,7 @@ METADATA = {
}
SETUPTOOLS_METADATA = {
'install_requires': ['cairocffi==0.6', 'scipy'],
'install_requires': ['cairocffi==0.6'],
}