From 55c4904b83c5dedf028a581d69df3d2409dd1d2f Mon Sep 17 00:00:00 2001 From: Denis Date: Mon, 24 Oct 2022 13:58:19 +0300 Subject: [PATCH] Update python-dateutil Hi @medvedev1088 ! We are using ethereumetl and bitcoinetl toghether in one application. ethereumetl depends on python-dateutil>=2.8.0 bitcoinetl depends on python-dateutil==2.7.0 We have conflicts. Is it possible to bump python-dateutil to >= 2.7.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a00868c..eae1149 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def read(fname): python_requires='>=3.5.0,<4', install_requires=[ 'requests~=2.20', - 'python-dateutil~=2.7', + 'python-dateutil>=2.7.0', 'click~=7.0' ], extras_require={