Carlos Ramos Carreño

Results 89 comments of Carlos Ramos Carreño

> I this case, `_get_max_container_width()` returns the max width of the column the widget resides. Tried it, it still uses `menu.get_width(inner=True)` in my case, which is wrong.

It seems that this issue also causes projects moving towards pyproject.toml adoption to lose their list of dependents, unless the name of the project is also repeated in setup.py. See...

Ok, I created https://github.com/data-apis/array-api/issues/400 to keep them on the loop. IMHO, the problem is not really with the API standard, but with NumPy and its desire to conform just with...

Note that the `array_api` module only needs to be used to create the array objects. Once they have been created, one uses `get_namespace` to get the appropriate module. Thus: -...

IMHO, there should be no scalars, only 0-D arrays, period. Otherwise, even if they behave almost identically, they break `isinstance` checks and static typing. For example you cannot do: ```python...

In the above code the `TypeVar` would be resolved to a concrete type (either `ndarray` or `generic`) in a particular call AFAIK, and thus Mypy won't infer the right return...

Another small inconvenience on falling back to `xp = np`. When you then use any dtype, such as `xp.bool`, an ugly warning is generated in that case: ``` DeprecationWarning: `np.bool`...

I do not think this needs to change in mypy, as the problem is using `issubclass` at runtime. I am also not familiar with the codebase, so I do not...

When is the new release containing this fix scheduled?

Can anyone publish a new PyPI release, please, @ashwin31?