Skip to content

Commit

Permalink
Fixed missing requirement 'python-dateutil'.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sopel committed Nov 7, 2012
1 parent 576046e commit 3c277be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit 3c277be

Please sign in to comment.