Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2256f20
PEP8. No unused import. # always follows by space.
PGijsbers Feb 21, 2019
59af53c
PEP8
PGijsbers Feb 21, 2019
065ee57
Edit a blank line back in for file formatting.
PGijsbers Feb 21, 2019
0d40cae
PEP8. Fix grammar.
PGijsbers Feb 21, 2019
f75ef71
PEP8
PGijsbers Feb 21, 2019
29a1afe
PEP8.
PGijsbers Feb 21, 2019
a0519c2
PEP8
PGijsbers Feb 21, 2019
b20abfd
Refactor.
PGijsbers Feb 21, 2019
59bc026
PEP8, small refactor.
PGijsbers Feb 21, 2019
9fecfc4
OpenMLStudy available through import *
PGijsbers Feb 22, 2019
97a4ed9
PEP8.
PGijsbers Feb 22, 2019
f93cc27
PEP8.
PGijsbers Feb 22, 2019
d270d02
PEP8. Removed Py2 support.
PGijsbers Feb 22, 2019
a134512
PEP8.
PGijsbers Feb 22, 2019
721a24a
PEP8. Minor refactor.
PGijsbers Feb 22, 2019
0e5918f
PEP8. Refactor/bugfix __eq__
PGijsbers Feb 22, 2019
d963df2
PEP8. task type are input for list_tasks anyway, so the enum should b…
PGijsbers Feb 22, 2019
5bc6a64
PEP8.
PGijsbers Feb 22, 2019
469da35
undo linebreaks
PGijsbers Feb 22, 2019
486675f
Update for updated error message.
PGijsbers Feb 22, 2019
a638640
Update for updated error message.
PGijsbers Feb 22, 2019
da0cdd2
Undo refactor.
PGijsbers Feb 22, 2019
af6d5c6
Redo refactor.
PGijsbers Feb 22, 2019
1e45bda
Merge branch 'develop' into fix624_pep8
mfeurer Feb 22, 2019
b196a97
Fix syntax error due to online merging
mfeurer Feb 22, 2019
7450082
Fix merge error due to online merging
mfeurer Feb 22, 2019
5d83c94
Fix bug due to online merge error
mfeurer Feb 22, 2019
3a98e9f
Change flake scope and arguments.
PGijsbers Feb 23, 2019
ecce029
Final PEP8 changes.
PGijsbers Feb 23, 2019
a4817ba
PEP8 for several test files
mfeurer Feb 23, 2019
0039738
PEP8.
PGijsbers Feb 23, 2019
b9482ba
PEP8.
PGijsbers Feb 23, 2019
a2ef3f9
PEP8. Removed import 'unused' import statements. Have to watch unit t…
PGijsbers Feb 23, 2019
792adb2
Fix bug regarding not existing argument
mfeurer Feb 23, 2019
9a45d03
PEP8.
PGijsbers Feb 23, 2019
24c39d8
Merge branch 'fix624_pep8' of https://github.com/openml/openml-python…
PGijsbers Feb 23, 2019
4e38475
Flake8 ignore directive.
PGijsbers Feb 23, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Flake8 ignore directive.
  • Loading branch information
PGijsbers committed Feb 23, 2019
commit 4e384757c8b854b9a426ed25092c87fe63b1dee6
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
dependency_links = []

try:
import numpy
import numpy # noqa: F401
except ImportError:
print('numpy is required during installation')
sys.exit(1)

try:
import scipy
import scipy # noqa: F401
except ImportError:
print('scipy is required during installation')
sys.exit(1)
Expand Down