Merge pull request #758 from paperless-ngx/dependabot/pip/dev/imap-tools-0.54.0

Bump imap-tools from 0.53.0 to 0.54.0
This commit is contained in:
Quinn Casey 2022-04-26 10:46:32 -07:00 committed by GitHub
commit 40cf46fe7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 7 deletions

8
Pipfile.lock generated
View File

@ -479,11 +479,11 @@
},
"imap-tools": {
"hashes": [
"sha256:119f1a60ea4048a4c5d72d9e9fa47c295685e340c730cb0b71fdf0ad3b7e53f8",
"sha256:3648bac835657b1c56ba856452c8a28bdbe3689d3730f95a4ad20d4c39f1c2d0"
"sha256:15d20ac8695fc4978a913c2186f482a802f5229c41c6e0c66c7bad8f1f590cf1",
"sha256:606b73a1b5ecc4c72eea5ad19231e07a88bf9ba9adbdd4acb8cf71a359dd43ec"
],
"index": "pypi",
"version": "==0.53.0"
"version": "==0.54.0"
},
"img2pdf": {
"hashes": [
@ -1593,7 +1593,7 @@
},
"coverage": {
"extras": [
"toml"
],
"hashes": [
"sha256:03e2a7826086b91ef345ff18742ee9fc47a6839ccd517061ef8fa1976e652ce9",

View File

@ -46,7 +46,7 @@ httptools==0.4.0
humanfriendly==10.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
hyperlink==21.0.0
idna==3.3; python_version >= '3.5'
imap-tools==0.53.0
imap-tools==0.54.0
img2pdf==0.4.4
importlib-resources==5.7.1; python_version < '3.9'
incremental==21.3.0

View File

@ -228,7 +228,6 @@ class TestMail(DirectoriesMixin, TestCase):
message.from_values = EmailAddress(
"Someone!",
"someone@somewhere.com",
"Someone! <someone@somewhere.com>",
)
message2 = namedtuple("MailMessage", [])
@ -236,7 +235,6 @@ class TestMail(DirectoriesMixin, TestCase):
message2.from_values = EmailAddress(
"",
"fake@localhost.com",
"",
)
me_localhost = Correspondent.objects.create(name=message2.from_)