Skip to content

Commit

Permalink
Merge branch 'release/3.13.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedelemantuano committed Nov 24, 2020
2 parents e3d91e2 + 71ba205 commit 9b3f638
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: [fedelemantuano]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ mail_parser.egg-info/
venv
venv27
venv3
venv-mailparser
report/
5 changes: 4 additions & 1 deletion mailparser/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@
r'(?:envelope-sender\s+<(?P<envelope_sender>.+?)>)',

# datetime comes after ; at the end
r';\s*(?P<date>.*)'
r';\s*(?P<date>.*)',

# sendgrid datetime
r'(?P<date>\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{9} \+0000 UTC) m=\+\d+\.\d+'
]

RECEIVED_COMPILED_LIST = [
Expand Down
2 changes: 1 addition & 1 deletion mailparser/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
limitations under the License.
"""

__version__ = "3.12.0"
__version__ = "3.13.0"

if __name__ == "__main__":
print(__version__)
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tool
ipaddress==1.0.23
simplejson==3.17.0
six==1.14.0
ipaddress>=1.0.23; python_version < '3.3'
simplejson>=3.17.0
six>=1.14.0

# dev
coverage==5.0.2
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ipaddress==1.0.23
simplejson==3.17.0
six==1.14.0
ipaddress>=1.0.23; python_version < '3.3'
simplejson>=3.17.0
six>=1.14.0

0 comments on commit 9b3f638

Please sign in to comment.