From 926ab52f1f0bce0f7e124d25dd8673d4cf79b1d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Tue, 13 Oct 2015 22:50:21 +0200 Subject: [PATCH] Remove thrift and pylibmc requirements for tests --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 7d659324..113bc190 100644 --- a/setup.py +++ b/setup.py @@ -28,12 +28,6 @@ tests_require = [ if sys.version_info[:2] == (2, 6): install_requires.append('unittest2') -if sys.version_info[0] == 2: - # only require thrift if we are going to use it - if os.environ.get('TEST_ES_CONNECTION', None) == 'ThriftConnection': - tests_require.append('thrift==0.9.1') - tests_require.append('pylibmc==1.4.1') - setup( name = 'elasticsearch', description = "Python client for Elasticsearch",