Radu Suciu

Results 92 comments of Radu Suciu

> Yup, the workflow looks good. Let's see if we need maturin installed. Also, do you think it is a good idea to test it for all the targets or...

> Whenever you see the line > > > Processing ./pypi/wheels/git_cliff-2.1.2.tar.gz > > It means that the wheel wasn't installable on the platform you're testing on, probably because you built...

> I don't have any experience with the PyPi release automation, but I know there are other software packages using maturin/pyO3 and doing this, so it should be possible to...

This seems to be a great addition that would increase type safety in my project, thanks for working on it!

This looks like a high quality PR that adds a very useful feature. Would definitely use if merged.

What datastore are you using? My guess is code like this is responsible: https://github.com/mattupstate/flask-security/blob/develop/flask_security/datastore.py#L242-L249 ```python if self._is_numeric(identifier): return user_model_query.get(identifier) for attr in get_identity_attributes(): query = alchemyFn.lower(getattr(self.user_model, attr)) \ == alchemyFn.lower(identifier)...

@directhex Another example of a netstandard requiring application: https://github.com/compomics/ThermoRawFileParser. Same error when attempting to run just with `mono-runtime`: ``` Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'netstandard, Version=2.0.0.0,...

> I'm not sure what you are trying to do there, but you are most likely doing it wrong. > > That icon has no text nodes, so setting `font-size`...

After a bit more digging, it does seem to likely be a `vue-tsc` bug.. Now that I've realized it's not limited to `font-size`, I've come across these related issues: -...

I'm hitting this when using bake in GHA and building containers that share lots of stages but differ in UID/GID and seems to fail around `COPY --from=stage` instructions. I don't...