Skip to content

Commit

Permalink
Replace email2dict with mailbits
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Mar 14, 2021
1 parent f6c9446 commit a859b3e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path
from traceback import format_exception
from click.testing import CliRunner, Result
from email2dict import email2dict
from mailbits import email2dict
from pytest_mock import MockerFixture
from outgoing.__main__ import main

Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_babyl.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from email.message import EmailMessage
from mailbox import Babyl
from pathlib import Path
from email2dict import email2dict
from mailbits import email2dict
import pytest
from outgoing import from_dict
from outgoing.senders.mailboxes import BabylSender
Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_maildir.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from operator import itemgetter
from pathlib import Path
from typing import Optional
from email2dict import email2dict
from mailbits import email2dict
import pytest
from outgoing import from_dict
from outgoing.senders.mailboxes import MaildirSender
Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_mbox.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from email.message import EmailMessage
from mailbox import mbox
from pathlib import Path
from email2dict import email2dict
from mailbits import email2dict
import pytest
from outgoing import from_dict
from outgoing.senders.mailboxes import MboxSender
Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_mh.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from operator import itemgetter
from pathlib import Path
from typing import List, Union
from email2dict import email2dict
from mailbits import email2dict
import pytest
from outgoing import from_dict
from outgoing.senders.mailboxes import MHSender
Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_mmdf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from email.message import EmailMessage
from mailbox import MMDF
from pathlib import Path
from email2dict import email2dict
from mailbits import email2dict
import pytest
from outgoing import from_dict
from outgoing.senders.mailboxes import MMDFSender
Expand Down
2 changes: 1 addition & 1 deletion test/test_senders/test_smtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path
import smtplib
from typing import Union
from email2dict import email2dict
from mailbits import email2dict
from pydantic import SecretStr
import pytest
from pytest_mock import MockerFixture
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ minversion = 3.3.0

[testenv]
deps =
email2dict~=0.1
mailbits~=0.2
pytest~=6.0
pytest-cov~=2.0
pytest-mock~=3.3
Expand Down

0 comments on commit a859b3e

Please sign in to comment.