Alexander Kislukhin
Alexander Kislukhin
~Looks like it's already working in VegaLite, but not yet implemented in Altair.~ https://github.com/vega/altair/issues/3417 Correction: it's working but with a warning, as explained in the Altair thread. The true solution...
## `pixi add duckdb` ❌ `pixi add --pypi duckdb` ❌ vs `pixi run pip install duckdb` ✅ on Windows ``` PS C:\code> pixi init duckdb-pip ✔ Initialized project in C:\code\duckdb-pip...
> 5. work around was just to use pip to install using pixi tasks @pablovela5620 I am also finding this necessary quite often, probably more often than @ruben-arts would like...
> @liquidcarbon I cannot reproduce this, neither on OSX or on windows. It's strange it does not select the `.whl` for some reason. @tdejager Just tried on Win10, original comment...
@ruben-arts noted -- I just wasn't sure which part @tdejager was trying to reproduce
Ran into this exact situation when I first tried `uv`! Error is not right, but non-transparent default doesn't seem right either. It could be helpful to 1) **have a flag...
The `"width": "container"` default explains something I ran into. Specifically, some compounds charts are tuned with [configure_view](https://altair-viz.github.io/user_guide/configuration.html#view-configuration): ``` chart.configure_view( continuousWidth=200, ) ``` normally it's equivalent to `chart.properties(width=200)`, but it takes...
This works: ``` mo.hstack([altair_plot, mo.Html(".output-area {max-height: none}")]) ``` But changes styles for all cells. Would be nice to just do the current one.