Add this to your manage.py:
import warnings
from django.utils.deprecation import RemovedInDjango110Warning
warnings.filterwarnings('always', category=RemovedInDjango110Warning)
Change "always" to "default" to ignore redundant messages or "error" to cause the program to crash on warning.
source
share