From 8489dbb4ba6d32e6fc37fd656efbd57a26da0897 Mon Sep 17 00:00:00 2001 From: Steven Ringo Date: Fri, 22 Nov 2019 12:33:44 +1100 Subject: [PATCH] Tighten python-dateutil dependency version to address issue with current release of botocore See https://github.com/boto/botocore/issues/1872 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3e6220c34..41897163f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ "jinja2>=2.7,<3.0", "schematics>=2.0.1,<2.1.0", "formic2", - "python-dateutil>=2.0,<3.0", + "python-dateutil>=2.0,<2.8", ] setup_requires = ['pytest-runner']