-
-
Notifications
You must be signed in to change notification settings - Fork 367
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
Configurables needs to be configurable #1037
Configurables needs to be configurable #1037
Conversation
IPython rely on configurables being configurables to ... configure things. Comm seem to insert or return a non-configurable in IPython, that make ipykernel crash in some instances. For example but not limited to: %config Completer.use_jedi = False Or trying to use hvplot for example. This is just a "this is wrong" PR, there should be a proper fix, and I will likely add a hard check in IPython that what is added in configurables is actually a configurables. This will need a fix in a Comm pacakge.
cc @fperez |
for more information, see https://pre-commit.ci
…#8) - Adds boto3 and holoviews-related tools used by the ICESat-2 tutorial. - Pins ipykernel to 6.16.0 until ipython/ipykernel#1037 is resolved - Reconciles environment name with the one on the main site repo, we'll use `cryocloud` for the env name henceforth
Thanks for the report! I'll make a new release with this tomorrow. |
Thx a lot @blink1073!! cc @yuvipanda @tsnow03 @weiji14 - we might be able to release the ipykernel pin on our cryo env soon. |
I already yanked the offending version, you should be able to remove the pin now |
Ah, got it, thx! |
Looks like |
This reverts commit a38167b.
IPython rely on configurables being configurables to ... configure things.
Comm seem to insert or return a non-configurable in IPython, that make ipykernel crash in some instances. For example but not limited to:
Or trying to use hvplot for example.
This is just a "this is wrong" PR, there should be a proper fix, and I will likely add a hard check in IPython that what is added in configurables is actually a configurables.
This will need a fix in a Comm pacakge.