We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 049b16a commit ed4912eCopy full SHA for ed4912e
1 file changed
setup.py
@@ -6,15 +6,11 @@
6
with open("openml/__version__.py") as fh:
7
version = fh.readlines()[-1].split()[-1].strip("\"'")
8
9
-try:
10
- import numpy # noqa: F401
11
- import scipy # noqa: F401
12
-except ImportError:
+if len(sys.argv) > 1 and sys.argv[1] == 'install':
13
print('Please install this package with pip: `pip install -e .`'
14
'Installation requires pip>=10.0')
15
sys.exit(1)
16
17
-
18
setuptools.setup(name="openml",
19
author="Matthias Feurer, Andreas Müller, Farzan Majdani, "
20
"Joaquin Vanschoren, Jan van Rijn and Pieter Gijsbers",
0 commit comments