Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 274
Issue 540#547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Issue 540 #547
Changes from all commits
fda4b902c7fd30ed33768a4ebfa7ebd71135d6053efbc1f6b6a3ffb87dc93557b0fdde2d7b75c2919dd61c4faff360273946cf1fa693c368e29cf4df0d8200be7791f5011216005649ab4103df2e898ee43c6530f45adbfcfd576782c717361cd5474ec6b2345321d2654cbd0714619fe858689e711267a3dbb9a4ae71bef922654e84c42d0f653a31d7f8eb82b4758fc53ef60edea31751f8c90c66cfcFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -25,6 +25,11 @@ env: | ||
| - DISTRIB="conda" PYTHON_VERSION="3.6" SKLEARN_VERSION="0.19.2" | ||
| - DISTRIB="conda" PYTHON_VERSION="3.6" SKLEARN_VERSION="0.18.2" | ||
| # Travis issue | ||
| # https://github.com/travis-ci/travis-ci/issues/8920 | ||
| before_install: | ||
| - python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)" | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is it useful for? MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A workaround, the travis-ci builds started failing not long ago. | ||
| install: source ci_scripts/install.sh | ||
| script: bash ci_scripts/test.sh | ||
| after_success: source ci_scripts/success.sh && source ci_scripts/create_doc.sh $TRAVIS_BRANCH "doc_result" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,21 @@ | ||
| from .functions import (list_datasets, check_datasets_active, | ||
| get_datasets, get_dataset, status_update) | ||
| from .functions import ( | ||
| check_datasets_active, | ||
| create_dataset, | ||
| get_dataset, | ||
| get_datasets, | ||
| list_datasets, | ||
| status_update, | ||
| ) | ||
| from .dataset import OpenMLDataset | ||
| from .data_feature import OpenMLDataFeature | ||
| __all__ = ['check_datasets_active', 'get_dataset', 'get_datasets', | ||
| 'OpenMLDataset', 'OpenMLDataFeature', 'list_datasets', | ||
| 'status_update'] | ||
| __all__ = [ | ||
| 'check_datasets_active', | ||
| 'create_dataset', | ||
| 'get_dataset', | ||
| 'get_datasets', | ||
| 'list_datasets', | ||
| 'OpenMLDataset', | ||
| 'OpenMLDataFeature', | ||
| 'status_update', | ||
| ] |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add a comment here on why this is necessary as in #560?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, I missed doing that.