From 0adf1392568b10cbbf69ea56771db988e9767b2b Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Fri, 31 Mar 2017 12:31:31 +0200 Subject: [PATCH] Drop environment markers from setup.py This commit does *not* fix any bug, but users keep reporting it as such while they simply use a very old setuptools. *sigh* --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 467bb8b5..f423d48d 100755 --- a/setup.py +++ b/setup.py @@ -87,8 +87,8 @@ setup( 'export': ['bernhard', 'cassandra-driver', 'couchdb', 'elasticsearch', 'influxdb>=1.0.0', 'kafka-python', 'pika', 'potsdb', 'prometheus_client', 'pyzmq', 'statsd'], - 'folders:python_version<"3.5"': ['scandir'], - 'gpu:python_version=="2.7"': ['nvidia-ml-py'], + 'folders': ['scandir'], # python_version<"3.5" + 'gpu': ['nvidia-ml-py'], # python_version=="2.7" 'ip': ['netifaces'], 'raid': ['pymdstat'], 'snmp': ['pysnmp'],