Skip to content

Commit ec0dbf5

Browse files
committed
Remove unnecessary checks for numpy/scipy in setup.py.
These deps are listing in install_requires, so will get installed by pip.
1 parent 0cb31c7 commit ec0dbf5

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

setup.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,6 @@
1-
import sys
21
from setuptools import setup, find_packages
32

43

5-
try:
6-
import numpy
7-
except ImportError:
8-
print('numpy is required during installation')
9-
sys.exit(1)
10-
11-
try:
12-
import scipy
13-
except ImportError:
14-
print('scipy is required during installation')
15-
sys.exit(1)
16-
174
setup(name='skope-rules',
185
version='1.0.0',
196
description='Machine Learning with Interpretable Rules',

0 commit comments

Comments
 (0)