Christopher Rowley

Results 75 issues of Christopher Rowley

In particular, decide if this will be done in a breaking way or not. If so, it should be done before v1.

Currently CondaPkg reads CondaPkg.toml files for any package which depends directly or indirectly on CondaPkg. Should we only read dependencies from direct dependents? I think yes. Why? Indirect dependencies are...

Given how long we've been at v0.2.* I think the API is stable enough to call it v1. I'd like to include: - [x] #60 - [x] #61 - [x]...

With `micromamba` v0.22.0 it appears that specifying the channel of a package forces it to be reinstalled. MWE: ```bash micromamba create -n test -y numba::numba -c conda-forge micromamba install -n...

type::bug

Thanks for starting this package. I've been getting used to it before adding my stuff. Here are a few things I've noticed in the implementation so far that I think...

It's not released yet, but there is a branch for bokeh v3, so I should make a corresponding branch to try upgrading.

- [ ] Set up the core functionality for interacting with a bokeh server. - [ ] Add a setting to control whether the rendered bokeh object should be reactive....

Currently some parts of the API take `Symbol` values (e.g. the `display` setting). Replace these all with strings, for consistency. Symbols can probably also be removed from most of the...

The following benchmark takes 5.5 seconds on my machine the first time, and 0.2 seconds subsequently: ```julia @time begin using Bokeh Bokeh.settings!(use_browser=true) p = figure() plot!(p, Scatter, x=randn(1000), y=randn(1000)) display(p)...