From 3c277be09472284b0f26c9b48f866a7b5f82c78c Mon Sep 17 00:00:00 2001 From: Steffen Opel Date: Wed, 7 Nov 2012 17:36:42 +0100 Subject: [PATCH] Fixed missing requirement 'python-dateutil'. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Importing iron_worker (e.g. via `from iron_worker import *`) currently yields _ImportError: No module named dateutil.tz_ inĀ  [ironworker.py, line 6](https://github.com/iron-io/iron_worker_python/blob/576046ee373247c81aa09a9cfa99466b564c2504/iron_worker.py#L6]. InstallingĀ `python-dateutil` manually fixed this, this patch should take care of that automatically. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 584fe75..08c1c49 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ py_modules=["iron_worker"], packages=["testDir"], version='1.0.1', - install_requires=["iron_core"], + install_requires=["iron_core", "python-dateutil"], description='The Python client for IronWorker, a cloud service for background processing.', author='Iron.io', author_email="support@iron.io",