From 1919963eb38eb73cfd522475afdde699b19ec9d4 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 10 Nov 2013 14:55:36 +0200 Subject: [PATCH] Add importlib to install_requires on Python 2.6. Fixes #319. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f3e1814..24621ee 100755 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ nice together. """ install_requires = ['rply>=0.6.2'] if sys.version_info[:2] < (2, 7): install_requires.append('argparse>=1.2.1') + install_requires.append('importlib>=1.0.2') if os.name == 'nt': install_requires.append('pyreadline==2.0')