Upgrade to Django 3.2
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
This commit is contained in:
parent
0f18e59d67
commit
4af1a39ca4
93 changed files with 3598 additions and 2725 deletions
|
@ -3,9 +3,8 @@ This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|||
:py:mod:`websites` app.
|
||||
|
||||
"""
|
||||
from __future__ import unicode_literals
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class WebsitesAppConfig(AppConfig):
|
||||
|
@ -13,5 +12,6 @@ class WebsitesAppConfig(AppConfig):
|
|||
AppConfig for the :py:mod:`websites` app.
|
||||
|
||||
"""
|
||||
name = 'websites'
|
||||
verbose_name = _('Websites')
|
||||
|
||||
name = "websites"
|
||||
verbose_name = _("Websites")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue