It is clearly related to this change in Django 3.1:
django.forms.DateTimeField now accepts dates in a subset of ISO 8601 datetime formats, including optional timezone, e.g. 2019-10-10T06:47, 2019-10-10T06:47:23+04:00, or 2019-10-10T06:47:23Z. The timezone will always be retained if provided, with timezone-aware datetimes being returned even when USE_TZ is False.
I did not look at the rest of your code, so I do not know whether there are more incompatibilities or not.
Could you please at least try to support Django 3.1? Thanks a lot!
Hi, while building with Django 3.1 I get the following error:
It is clearly related to this change in Django 3.1:
I did not look at the rest of your code, so I do not know whether there are more incompatibilities or not.
Could you please at least try to support Django 3.1? Thanks a lot!