From 5cf4124035e363ad41ff9539acd691f107a13066 Mon Sep 17 00:00:00 2001 From: Kliment Yanev Date: Mon, 18 Sep 2017 10:23:08 +0200 Subject: Remove references to scipy from travis config and setup.py --- .travis.yml | 2 +- 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" diff --git a/setup.py b/setup.py index c8c2a9c..1df0868 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ METADATA = { } SETUPTOOLS_METADATA = { - 'install_requires': ['cairocffi==0.6', 'scipy'], + 'install_requires': ['cairocffi==0.6'], } -- cgit