Results 111 comments of Jules Chéron

After the introduction of `LogarithmicConverter` I think it should be easy to implement.

You're setting up matplotlib for `ureg` registry. But using `pint.Quantity`. replace `pint.Quantity` with `ureg.Quantity`

Yes, I think we need to investigate, but when I insected `ids` of registry they were different.

Oh you're right, I'll flag this as a bug. See if we can find what's going on. It might come from the wrapper or how setup_matplotlib operates.

@keewis I was able to reproduce this bug on master

It would be nice to set the expected type `magnitude` should return either np.array, float or any supported types. It is sometimes confusing for the user to guess it when...

type annotation of the magnitude should be the first thing we should target since Quantity type is a container just like List Tuple. Second should be unit or dimension. Just...

We could take a look at https://docs.python.org/3/library/typing.html#typing.Annotated which describe what we want to achieve I think.

There are multiple use cases that we should address: - Static type analysis with mypy (magnitude type falls under this) - Quantity should be a Generic. - Documentation (which dimension...

We'll make 0.18 release soon, prob end of the month. pint typing support will be experimental at first, I still need to document it. I'll push for a new version...