From 1b94a9b88efcc10ddee320ed17fd3d97371c2f22 Mon Sep 17 00:00:00 2001 From: Trevor Bekolay Date: Tue, 5 Apr 2022 13:51:31 -0500 Subject: [PATCH] Require types-python-dateutil Not having this installed results in confusing errors when running `mypy` on the subtraction of two `Arrow` instances. See https://github.com/python/mypy/issues/11613 for details. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 350a5a0f..05e0b7d3 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ python_requires=">=3.6", install_requires=[ "python-dateutil>=2.7.0", + "types-python-dateutil>=2.8.10", "typing_extensions; python_version<'3.8'", ], classifiers=[