From bef18ffa51bf645149cfef05330e0a04249f2c4c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 3 Jun 2019 09:36:56 +0200 Subject: [PATCH] setup.py: Add install_requires for pytz From commit 36120fbd7d9bb7771e61bc21d73168bf5d83419e onwards, we introduced a dependency to pytz for timezone conversion. This dependency was not reflected in setup.py. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4c2dc15..90745af 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ from inema import __version__ install_requires = [ 'zeep >= 0.12.0', 'lxml', + 'pytz' ] setup(