Skip to content

Commit eb35b56

Browse files
committed
Fix ci errors, specify minimum Django version
1 parent ee415b4 commit eb35b56

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

cr_sendmail/backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from subprocess import Popen
88

99
from django.conf import settings
10-
from django.core.mail.message import sanitize_address
1110
from django.core.mail.backends.base import BaseEmailBackend
11+
from django.core.mail.message import sanitize_address
1212

1313

1414
LOGGER = logging.getLogger("cr-sendmail-django")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers = [
1717
"Framework :: Django",
1818
]
1919
dependencies = [
20-
"Django",
20+
"Django>=1.3",
2121
]
2222
description = "Django email backend which invokes system `sendmail` binary."
2323
dynamic = ["version"]

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
build
22
ruff
3+
mypy

0 commit comments

Comments
 (0)