From cde96d6243f88d89d558e3256977abfdebdd8162 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 27 2015 10:22:57 +0000 Subject: We need the python module not the RPM in the dependencies --- diff --git a/setup.py b/setup.py index 3a1cab3..be5a5b0 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def get_requirements(requirements_file='requirements.txt'): lines = open(requirements_file).readlines() return [ - 'python3-%s' % line.rstrip().split('#')[0] + line.rstrip().split('#')[0] for line in lines if not line.startswith('#') ]