Marcel Canu

Results 2 comments of Marcel Canu

I also got confused by DAL not supporting Django 4 yet because of the [README's Roadmap section](https://github.com/yourlabs/django-autocomplete-light#roadmap). > - DAL < 4 supports Python 2 and 3 and Django 1.8...

I came across the same issue here, I used the `disable_auditlog` context manager: ```python from auditlog.context import disable_auditlog with disable_auditlog(): request.user.delete() ```