From c74abbab28e0a43401d62e1d3da2f1a8fe673e04 Mon Sep 17 00:00:00 2001 From: Kazuhiro MIYAHARA Date: Tue, 5 Jan 2016 14:31:40 +0900 Subject: [PATCH] Add install requirement of tzlocal to setup.py In commit "c3312216a254bb49e4548bf1c27b344588c4f108", some programs are changed to use tzlocal module. However, setup.py doesn't have requirement of tzlocal information. This patch adds install requirement of tzlocal to setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 213483c..459f5d9 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ 'Programming Language :: Python :: 2.6', 'Environment :: No Input/Output (Daemon)', ], - install_requires=[], # removed for better compat + install_requires=['tzlocal'], # There should be few required modules for better compat scripts=['bin/swift-account-stats-logger', 'bin/swift-container-stats-logger', 'bin/swift-log-stats-collector', 'bin/swift-log-uploader',