1
0
Fork 0

Modernize syntax, drop Python EOL, drop drop Django<1.11, upgrade TravisCI config to v1, add Python 3.8 & Django 3.x

This commit is contained in:
Adam Dobrawy 2019-10-15 05:31:13 +02:00
parent f9b0a27e5f
commit 2b2b7d6392
43 changed files with 228 additions and 349 deletions

View file

@ -1,7 +1,6 @@
import os
import uuid
from six.moves.urllib import parse
from urllib import parse
from django.core.mail import EmailMultiAlternatives
@ -14,7 +13,7 @@ __all__ = ['TestImap']
class TestImap(EmailMessageTestCase):
def setUp(self):
super(TestImap, self).setUp()
super().setUp()
self.test_imap_server = (
os.environ.get('EMAIL_IMAP_SERVER')