Dan Allan
Dan Allan
# Description Closes #1490 Supersedes #1488 This builds on @Gideon357's commits in #1488 with the following changes: * Addressed @jacobtomlinson's review comments left on the original PR. * Confirmed that...
I expect folks are already aware that JupyterLab's Google Drive integration triggers a "Security Checkup" advisory from Google. Is there someway to help Google "verify" Jupyter's "developer's information"? ![screen shot...
Running Helm Chart version 0.11.1 (JupyterHub 1.3.0, KubeSpawner 0.15.0), I find that setting: ```yaml hub: extraConfig: 00-spawner-env-config: | c.KubeSpawner.environment.update({"TEST_ENV": "HELLO"}) ``` works as expected, setting `TEST_ENV` in the user environment,...
In #547, an `auth` attribute was restored, but ``__init__`` still does not accept an ``auth`` parameter, so the backward-incompatibility was not fully addressed.
Closes #534 This adds a new optional parameter to `Catalog`, `entry_type`. Its default value, `object`, accepts entries of any type and is thus backward-compatible. Subclasses or instances may override this...
Some Catalogs contain a mixture of types, but at the very least we can declare that the type is `object` or `DataSource`. For Catalogs with uniform entries, we can use...
**This original post does not quite align with our current thinking. See the second and third comments.** @jsignell and I propose adding a new experimental minimal alternative to `DataSource`, which...
If we adopt a convention of registering DataSources using the mimetype that they handle, as in ```py entry_points = { 'intake.drivers': ['image/tiff = intake_tiff.TiffSource']} ``` then we can enable usages...
This has happened to me and to users I support a handful of times. It involves the fact that if `cat` is not defined, IPython (and the Jupyter `ipykernel`) interprets...
## Why? As a pluggable reader it seems plausible that intake core could have very few required dependencies. It is easier to convince people to adopt a library when it...