From 8422150485f15859b06665983a59ebabca39e3c3 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 14 Jun 2021 16:17:04 +0100 Subject: [PATCH] Require python-dateutil>=2.7 (otherwise freezegun fails with module 'dateutil.tz' has no attribute 'UTC') --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ff451fa94..f0ca608cfc 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ install_requires = [ # Testing dependencies testing_extras = [ # Required for running the tests - 'python-dateutil>=2.2', + 'python-dateutil>=2.7', 'pytz>=2014.7', 'elasticsearch>=5.0,<6.0', 'Jinja2>=2.11,<3.0',