Eric Cousineau
Eric Cousineau
Difference from original error in #74: ``` $ git fetch upstream searching for changes no changes found From hg::ssh://[email protected]/osrf/sdformat 501ada1..e50fb23 branches/pose_dom -> upstream/branches/pose_dom * [new tag] sdformat3-mentor2_3.99.99%2Bmentor2v1.0 -> sdformat3-mentor2_3.99.99%2Bmentor2v1.0 *...
I hit this as well, looking forward to this feature! Here's a slightly more general of Jgfrausing's code w/ a unittest: https://github.com/EricCousineau-TRI/repro/commit/cc41402 (FTR, can't say I'm a fan of the...
Was able to fix by installing `baselines` from git: ``` pip install git+https://github.com/openai/baselines@ea25b9e8 ```
Actually had a change to tinker around with something that is hopefully expression template-compatible: https://forum.kde.org/viewtopic.php?f=74&t=140012 Unfortunately, I could not leverage `intializer_list` due to its constraints on homogeneity.
Howdy @gabemblack! I'm checking w/ others to see if we should queue this up for [v2.7](https://github.com/pybind/pybind11/milestone/10) or another release!
Howdy Gabe, my deepest apologies. I don't think this would make it to the 2.7 release; however, it could still be considered for the future! (FWIW I work on a...
It was briefly discussed, with some notes captured here: https://github.com/pybind/pybind11/wiki/Roadmap#targets-for-28 I need to stay "shrouded" until mid-October; after which, I'll try to re-engage.
I'm down for this! Any chance you were able to check binary size produced before/after this PR for one platform+Python version+impl? I would expect it might increase, but ideally it...
Slowly circling back, but relates #2362 -- documenting pytypes a bit more, perhaps with examples \cc @YannickJadoul @henryiii @rwgk
Nevermind, issue just comes from assuming that type has the same `holder_type`: https://github.com/pybind/pybind11/blob/86e2ad4f77442c3350f9a2476650da6bee253c52/include/pybind11/pybind11.h#L1288-L1291 The cast to `holder_type` is erroneous since the `existing_holder` is actually of type `unique_ptr`, but the type's...