Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 3.0 compatible #6

Merged
merged 6 commits into from
Jun 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 4 additions & 34 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,14 @@ sudo: false
language: python

env:
- DJANGO_VERSION="Django>=1.8,<1.9"
- DJANGO_VERSION="Django>=1.9,<1.10"
- DJANGO_VERSION="Django>=1.10,<1.11"
- DJANGO_VERSION="Django>=1.11,<2.0"
- DJANGO_VERSION="Django>=2.0,<2.1"
- DJANGO_VERSION="Django>=3.0,<3.1"
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "3.7"
- "3.7"
- "3.8"
matrix:
exclude:
- python: "3.6"
env: DJANGO_VERSION="Django>=1.8,<1.9"
- python: "3.6"
env: DJANGO_VERSION="Django>=1.9,<1.10"
- python: "3.6"
env: DJANGO_VERSION="Django>=1.10,<1.11"

# - python: "3.7"
# env: DJANGO_VERSION="Django>=1.8,<1.9"
# - python: "3.7"
# env: DJANGO_VERSION="Django>=1.9,<1.10"
# - python: "3.7"
# env: DJANGO_VERSION="Django>=1.10,<1.11"
# - python: "3.7"
# env: DJANGO_VERSION="Django>=2.0,<2.1"

# Django 2.0 won't support Python 2.x anymore
- python: "2.7"
env: DJANGO_VERSION="Django>=2.0,<2.1"

# Django 2.1 won't support Python 3.4 anymore
- python: "2.7"
env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
- python: "3.4"
env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
allow_failures:
- env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'

Expand All @@ -52,6 +21,7 @@ install:
before_script:
# Make sure we have gpg installed; this also logs the version of GPG
- gpg --version
- mkdir gpg_keyring
script:
- flake8 secure_mail --exclude=secure_mail/migrations
- coverage run manage.py migrate
Expand Down
2 changes: 0 additions & 2 deletions secure_mail/backends.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import with_statement

from email.mime.base import MIMEBase

from django.core.mail.backends.console import EmailBackend as ConsoleBackend
Expand Down
2 changes: 0 additions & 2 deletions secure_mail/management/commands/email_signing_key.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""
Script to generate and upload a signing key to keyservers
"""
from __future__ import print_function

import argparse

from django.core.management.base import LabelCommand, CommandError
Expand Down
5 changes: 0 additions & 5 deletions secure_mail/models.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
from __future__ import unicode_literals

from django.db import models
from django.utils.encoding import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _

from secure_mail.utils import addresses_for_key, get_gpg


@python_2_unicode_compatible
class Key(models.Model):
"""
Accepts a key and imports it via admin's save_model which
Expand Down Expand Up @@ -51,7 +47,6 @@ def save(self, *args, **kwargs):
address.save()


@python_2_unicode_compatible
class Address(models.Model):
"""
Stores the address for a successfully imported key and allows
Expand Down