From 92bf41d449d9a0e5e7d5405f13e9e045001fd155 Mon Sep 17 00:00:00 2001 From: Toilal Date: Sun, 27 Nov 2016 09:35:48 +0100 Subject: [PATCH] Upgrade to rebulk 0.8.1 to support python 2.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1adc927..f78f81e 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: with io.open(os.path.join(here, 'HISTORY.rst'), encoding='utf-8') as f: history = f.read() -install_requires = ['rebulk>=0.8.0', 'babelfish>=0.5.5', 'python-dateutil'] +install_requires = ['rebulk>=0.8.1', 'babelfish>=0.5.5', 'python-dateutil'] if sys.version_info < (2, 7): install_requires.extend(['argparse', 'ordereddict']) setup_requires = ['pytest-runner']