Henry Schreiner

Results 2521 comments of Henry Schreiner

`awkward_array_goes_here.hist.Reg(100, 0, 5).Double().plot()`? Or `.hist.new.` to give options to add other interfaces like `.hist.auto()`, for example, which would do the numpy-like auto binning? Using QuickConstruct is the right thing, I...

What's the difference between conventionalcommits and the angular variant? I always follow conventionalcommits (out of habit) unless a project has a different convention (like pypa/build). But it looks just like...

I'll look at it later, but pretty sure there weren't blockers, it was just work that had never been done. Azure is just a earlier design of GHA.

Running into this too with https://github.com/henryiii/uproot-browser/issues/33. Hardcoding forcing of this to transparent and wiping the face color makes it impossible to use on black terminals (or if you themed it...

Here's my hacky workaround: ```python def intercept(func: Callable[..., Any], *names: str) -> Callable[..., Any]: """ Intercept function arguments and remove them """ @functools.wraps(func) def new_func(*args: Any, **kwargs: Any) -> Any:...

> Re: pybind11, it was only recently that they moved everything into the package tree; earlier releases installed in system locations. Both options are available. `pybind11-global` installs to the system...

> it doesn't really contain the prefix of the python package What do you mean? Is it something that we (pybind11) can fix? The only requirement is that it is...

No, `pip install package` should not install things outside of site packages. If a user does this without being inside a virtual environment, it messes with the base system. Try...

> exact same situation except replacing the word "pkg-config" with "cmake" everwhere Is the pkg-config not in that one too? It should be, IMO.

I wouldn't say there aren't places where you can use it (`pybind11_global` does use it!), but it's somewhat discouraged due to the ability to do exactly what it was supposed...