Paul FLORENCE

Results 43 comments of Paul FLORENCE

I have ran the tests localy with `-Wa` for python3.11, django 4.2 and drf 3.14 => no issues except the one solved by #288 which is unrelated to those version...

> Could you please rebase on /merge with the latest master? Done. Some tests are failing (django v3.0 and v4.2), it seems that it's an old psycopg2 bug : https://github.com/psycopg/psycopg2/issues/1293...

I got the same issue with : `django==4.2`, `djangorestframework==3.14.0` and `djangorestframework-gis==1.0`. Note : those versions are not officially supported.

A quick solution is to redefine a new serializer class that correctly instantiate a GEOSGeometry. Here is such a class : ```python class InstantiatingGeoFeatureModelSerializer(GeoFeatureModelSerializer): def to_internal_value(self, data): result = super().to_internal_value(data)...

> A quick solution is to redefine a new serializer class that correctly instantiate a GEOSGeometry. > > Here is such a class : > > ```python > class InstantiatingGeoFeatureModelSerializer(GeoFeatureModelSerializer):...

> A quick solution is to redefine a new serializer class that correctly instantiate a GEOSGeometry. > > Here is such a class : > > ```python > class InstantiatingGeoFeatureModelSerializer(GeoFeatureModelSerializer):...

see the related pr : https://github.com/Opus10/django-pgtrigger/pull/134

> I am trying to make a Pull Request for this library, and I had some issues while following the `CONTRIBUTING.md` guide which might interest you :) > > When...

We are working on a robot due in May for a competition, should we prefer using this crate or stm32f1xx-hal in term of features ?

I am working on a pwm input implementation and I'd like to put my implementation on the stm32f1xx-hal instead of this one, but I need to maintain compatibility with our...