-
Notifications
You must be signed in to change notification settings - Fork 13
ENH: Run an automatic skeleton update on import by default #45
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
Changes from all commits
a82d691
9c38a59
14bf7a9
005081c
5329ae8
67e7ffc
ea7dd5c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,14 +42,14 @@ | |
| _update_s3(TF_HOME, local=True, overwrite=True) | ||
|
|
||
|
|
||
| def update(local=False, overwrite=True): | ||
| def update(local=False, overwrite=True, silent=False): | ||
| """Update an existing DataLad or S3 home.""" | ||
| if TF_USE_DATALAD and _update_datalad(): | ||
|
Member
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. have you checked this update thing with the datalad operation mode? - possibly for a further PR of refinements of that use-case
Contributor
Author
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. nope - though just did and: so I'll commit your changes to avoid the auto-update if the user prefers DataLad. |
||
| return True | ||
|
|
||
| from ._s3 import update as _update_s3 | ||
|
|
||
| return _update_s3(TF_HOME, local=local, overwrite=overwrite) | ||
| return _update_s3(TF_HOME, local=local, overwrite=overwrite, silent=silent) | ||
|
|
||
|
|
||
| def setup_home(force=False): | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.