-
Notifications
You must be signed in to change notification settings - Fork 294
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
Support remote for IW #7452
Support remote for IW #7452
Conversation
Codecov Report
@@ Coverage Diff @@
## main #7452 +/- ##
=====================================
Coverage 64% 64%
=====================================
Files 361 361
Lines 22495 22511 +16
Branches 3418 3424 +6
=====================================
+ Hits 14547 14570 +23
+ Misses 6732 6725 -7
Partials 1216 1216
|
} | ||
}); | ||
|
||
return defaultPythonKernel || defaultPython3Kernel || defaultPythonLanguageKernel || controllers[0]; |
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.
For the default kernel would we maybe want defaultPython3Kernel to have priority over defaultPythonKernel? Feel like that would be better on mac / linux systems.
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.
It used to support other languages from the kernel picker AFAIK, but not on startup.
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.
Yuck, the code is hardcoded to always return Pytohn kernels.
8c75008
to
36faffb
Compare
For #6881
Was much easier than i thought.