I noticed #285 and figured I would take a stab at it. I just added apps.py with an AppConfig subclass which sets the default_auto_field setting to AutoField. To my understanding, Django >= 3.2 (the versions where the warning mentioned in the issue appears) automatically loads the AppConfig subclass found in apps.py, so I think just adding this should address the issue.
Hello!
I noticed #285 and figured I would take a stab at it. I just added
apps.py
with anAppConfig
subclass which sets thedefault_auto_field
setting toAutoField
. To my understanding, Django >= 3.2 (the versions where the warning mentioned in the issue appears) automatically loads theAppConfig
subclass found inapps.py
, so I think just adding this should address the issue.resolves #285.