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 8eef523 commit b9df112Copy full SHA for b9df112
setup.py
@@ -6,13 +6,6 @@
6
with open("openml/__version__.py") as fh:
7
version = fh.readlines()[-1].split()[-1].strip("\"'")
8
9
-# Using Python setup.py install will try to build numpy which is prone to failure and
10
-# very time consuming anyway.
11
-if len(sys.argv) > 1 and sys.argv[1] == 'install':
12
- print('Please install this package with pip: `pip install -e .` '
13
- 'Installation requires pip>=10.0.')
14
- sys.exit(1)
15
-
16
if sys.version_info < (3, 5):
17
raise ValueError(
18
'Unsupported Python version {}.{}.{} found. OpenML requires Python 3.5 or higher.'
0 commit comments