-
Notifications
You must be signed in to change notification settings - Fork 95
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
Add anywidget to pangeo-notebook #522
Conversation
Custom jupyter widgets made easy! Repo at https://github.com/manzt/anywidget
/condalock |
Can someone open the binder link to test and see if |
Binder build doesn't seem to work
|
Hmm, the |
Oh wait, I just noticed this line:
Why is it using Python 3.1, is there some Python 3.10 bug somewhere? |
/condalock |
Good catch, that is an unrelated bug that seems to have been happening since we started using python 3.10 see #530 |
@@ -4,6 +4,7 @@ channels: | |||
- nodefaults | |||
dependencies: | |||
- adlfs | |||
- anywidget |
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.
I still don't understand why we don't just add lonboard
here. it seems like the whole matching hub/client versions might just be relevant if running jupyterhub on a single machine (with a common default env) versus k8s? maybe i'm missing something, but for the k8s case I thought all packages and versions available to a user are defined here and nowhere else.
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.
Well, it depends on how much people want to use lonboard
. I've only added anywidget
to keep things lightweight-ish, but if lonboard
is something a lot of people want to use, then we could add it directly also. Just that I work at the same company developing lonboard
, so don't want to be too pushy 😉
Note that the conda-forge
version of lonboard
at https://anaconda.org/conda-forge/lonboard/files?version=0.7.1 sets a minimum pin of anywidget >=0.9.0
, so I don't think we can be confident about matching compatible lonboard
and anywidget
versions, even if we do add lonboard
to the environment.yml file here.
/condalock |
Superseded by #532. |
Custom jupyter widgets made easy! Repo at https://github.com/manzt/anywidget
Fixes #520.