Bryn Lloyd
Bryn Lloyd
Also, native enums (e.g. `enum.IntEnum`) support duplicate values (as does pybind11), however, the "second" key is just an alias: ```py from enum import IntEnum status_dict = { "OK": 0, "SUCCESS":...
I can confirm this also happens with the new `pybind11::native_enum`, which uses the standard library enum types as base class. For the following enum (added in enum.cpp): ```cpp enum class...
Also removed setup.cfg. It was specifying the description (readme file), but this is already included in the pyproject.toml.
https://github.com/syoyo/tinygltf nicely maps the GLTF format to simple data-structures for reading/writing.
Thanks for the explanation. Makes sense. Is your quick fix to add a comment in the documentation? Sounds good, thanks
> Thanks for all this. I haven't had time to look but will do so asap. Re. the normalization---how much have you coordinated with the template building scrips in the...
> that should be optional - not a default. I've not looked at your implementation but you would be "changing the method" if you added this. eg you are implying...
> "more correct" is a different method. just keep this PR simple. I'm sorry if this sounded like a criticism of your tool. I really appreciate your great work and...
Is there any update? here is the numpy 2.0 compatibility table: https://github.com/numpy/numpy/issues/26191 It seems the problematic package `connected-components-3d` from @wasserth's error message was upgraded (compiled against numpy>2.0 since June 17,...
This is a great effort! Here are some comments: **Problem 1: Deeply Nested Conditional Logic in `_from_new_style`** ```py @classmethod def _from_new_style(cls, resolved_type: ResolvedType) -> Optional[_NumpyArrayAnnotation]: if resolved_type.parameters is None or...