-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
spyder_io_hdf5 plugin not available (Issue #4487) #4491
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixes #3859 Fixes spyder-ide/spyder-vim#7
[ci skip]
Fixes #3458
Fixes #3874
Fixes #3788
Replace _logger calls with debug_print
PR: Add Panels and PanelsManager, and use it to add LineNumberArea to editor
Fixes #3875
Fixes #3809
Fixes #3461
…e_3585 PR: Load files in the background and set focus to the last one with focus in the previous session
self.profiler.analyze should not take self as otherwise filename=self, wdir=filename and wdir=wdir
Fixes #3843
Fixes #3800
Fixes #3901
Fixes #3883
+ _adjust_parent_stack works on the heap stack that represents the parents for a given FoldScopeHelper object.
+ Added default value of `True` to spyder/config/main.py + Added checkbox to Editor -> Display -> Interface option dialog in spyder/plugins/editor.py + Added method to set class/func dropdown visibility to spyder/widgets/editor.py.
PR: Add a new panel to show/explore class and methods/functions present in the current file
PR: Fix error in Find in Files because of changes in master
Fixes #4481
I'm afraid your pull request went wrong. It seems you merged master to 3.x, and there's no need for that. So I'm going to close this PR and kindly ask you to open a new one. |
Sorry. I'm new to Github. I'm still on svn. Will try again.SimonOn 19 May 2017 6:54 p.m., Carlos Cordoba <[email protected]> wrote:I'm afraid your pull request went wrong. It seems you merged master to 3.x, and there's no need for that.
So I'm going to close this PR and kindly ask you to open a new one.
—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or mute the thread.
|
No problem, don't worry about it :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This code change apparently fixes it (line 51 and down of otherplugins.py):
for name in os.listdir(plugin_path):
# Is this a Spyder plugin?
if not name.startswith(PLUGIN_PREFIX):
continue
# Ensure right type of plugin
if is_io != name.startswith(IO_PREFIX):
continue