Andrew Walker

Results 21 comments of Andrew Walker

@BenjjinF I'm experiencing this issue too with filtering on model IDs - did you find a solution?

For anyone coming to this for graphene-django==2.8.0 who also needs to be able to filter on foreign key IDs, this is the minimum I was able to extract from graphene-django-extras:...

Sure: ```python import graphene from graphene_django import DjangoObjectType from django_filters.filterset import FilterSet class FooFilterSet(FilterSet): class Meta: model = models.Foo fields = ["bar", "baz"] # fields you want to be able...

I haven't used TS for a couple of years since my previous job so my knowledge is a little bit rusty! I'll have a proper look at the weekend, but...

I've just come across this same issue. Did you find a better solution? When I call `addData` both my min and max are getting set to whatever the value of...

I just noticed I was passing `x` and `y` values that were non-integers. Once I rounded these before calling `addData` the problem seems to have gone away. `addData` no longer...

This still appears to be the case. I also noticed this acknowledged [on Reddit](https://www.reddit.com/r/moviepy/comments/2vejpa/transparency_works_with_imageclip_but_not_with/) a year or so ago. Is there any progress on this? I can try and have...

Having something like an `ignorePattern` where you can give a regex for images to ignore would potentially solve our issue.

Yes, I was going to ask about that - I too have been seeing lots of `xyz-next` packages. I think you're right to want to avoid that here. Unless the...