You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spyder_io_hdf5 plugin doesn't seem to be registered although h5py installed correctly.
What steps will reproduce the problem?
Ensure h5py installed
Go to variable editor pane
Click import, note lack of .h5 extension being available
What is the expected output? What do you see instead?
Please provide any additional information below
This code change 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
# Import the plugin
_import_plugin(name, plugin_path, modnames, modlist)
Description
spyder_io_hdf5 plugin doesn't seem to be registered although h5py installed correctly.
What steps will reproduce the problem?
What is the expected output? What do you see instead?
Please provide any additional information below
This code change fixes it (line 51 and down of otherplugins.py):
Version and main components
Dependencies
The text was updated successfully, but these errors were encountered: