Update some python deps to prepare python>=3.10 compat

ABC classes have moved from collections to collections.abc since
python 3.3, and retro compat has ended with 3.8
This commit is contained in:
Yohan Boniface
2022-08-19 10:16:56 +02:00
parent 7ae425f869
commit ac9f2fbdd1
2 changed files with 4 additions and 4 deletions

View File

@@ -292,7 +292,7 @@ def DATEVALUE(date_string, tz=None):
>>> DATEVALUE("asdf")
Traceback (most recent call last):
...
ValueError: Unknown string format
dateutil.parser._parser.ParserError: Unknown string format: asdf
"""
return dateutil.parser.parse(date_string).replace(tzinfo=_get_tzinfo(tz))