We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee415b4 commit eb35b56Copy full SHA for eb35b56
cr_sendmail/backends.py
@@ -7,8 +7,8 @@
7
from subprocess import Popen
8
9
from django.conf import settings
10
-from django.core.mail.message import sanitize_address
11
from django.core.mail.backends.base import BaseEmailBackend
+from django.core.mail.message import sanitize_address
12
13
14
LOGGER = logging.getLogger("cr-sendmail-django")
pyproject.toml
@@ -17,7 +17,7 @@ classifiers = [
17
"Framework :: Django",
18
]
19
dependencies = [
20
- "Django",
+ "Django>=1.3",
21
22
description = "Django email backend which invokes system `sendmail` binary."
23
dynamic = ["version"]
requirements-dev.txt
@@ -1,2 +1,3 @@
1
build
2
ruff
3
+mypy
0 commit comments