Henry Schreiner
Henry Schreiner
Something seems broken with homebrew * isolated installs on M1. Vaguely thought I remember hearing about that somewhere else.
Yeah, I'm quite sure I saw a discussion somewhere that homebrew is patching Python in such a way that isolated builds are broken. Needs to be reported and fixed. I...
IMO, you could deprecate the unusual types, and produce a warning, and "verbally" deprecate (as in, no warning, but docs discourage it). I think that would be enough to leave...
I added this pretty recently, so not sure. I can pin an older version though if you want me to test one.
> CMake 3.27 should by default switch to the "new" pybind11ToolsNew.cmake No. It should only switch if a user specifies 3.27 as their minimum or maximum CMake version, thereby acknowledging...
Normally functions in different namespaces (`pybind11::detail` and (`nlohmann::detail`) don't collide. I believe cast is special, because users implement casters by entering our private namespace. Why is it getting mixed with...
Do you have a little more of the error message?
I don't think this hurts, it's just general cleanup that happens to also (maybe) help someone? We should be qualifying our usage.
We already qualify some other things. If it makes sense to qualify it, why not go ahead and qualify it? We don't call some random concat (as in the description),...
(I'd also be okay with more qualified names too, unqualified names really should only be used when it's fine for a user to inject their own code, and we don't...