Henry Schreiner
Henry Schreiner
I think we should focus on how to "feed" our histograms to these other packages. Maybe come up with a standard histogram API? Then boost-histogram (and maybe others, like Physt)...
Because it's used in a lot of other places in Python now to mean union, such as sets, dicts (3.9+), and types (3.10+). I believe a "Book" in HistBook was...
FYI: In Python 3.10, `int | str` is the same as `from typing import Union; Union[int, str]`, and it will work inside isinstance, so you can write `isinstance(x, int |...
`hist.stacks.Stack(h1, h2)` would be the explicit constructor. There also should be some way to convert a category axis to a stack. `h.stack("axis1") -> stack`. The current plot shortcut could be...
I'm thinking 95% of users will likely do `h.stack(ax)` and not `Stack(hist1, hist2, ...)`, so I'm not that worried about adding a shortcut for it now. If we do, yes,...
@phlptp anything left before a 2.3?
I'd be okay to help make PRs to keep this up to date if it becomes a problem. I'm a little more worried about making the README grow too much....
Those are just relative includes, so they should work, assuming the files are also there. Is this something breaking that was working, or a new addition breaking?
Why the CMake and Setuptools pins?
Where should I be looking to see the failure?