From f06bfa150772b737eae6d906073774d3c9af5571 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Dec 22 2017 01:52:57 +0000 Subject: Move 'rpm-python' from install to test requires (#1528508) RPM upstream, spectacularly idiotically, changed the 'name' of this module (in setuptools/pkg_resources terms), making it flat out impossible to express a dependency on it that will work properly. To try and keep things working as best we can, move the requirement from install.requires to test.requires; this will at least mean the tests work so long as the module can be found under the 'rpm-python' name, while meaning the consumer will work even when it's not around. I hope. Signed-off-by: Adam Williamson --- diff --git a/install.requires b/install.requires index 41f6409..424e135 100644 --- a/install.requires +++ b/install.requires @@ -1,6 +1,5 @@ fedfind fedmsg[consumers] mwclient -rpm-python setuptools wikitcms diff --git a/tests.requires b/tests.requires index 93253de..d03482a 100644 --- a/tests.requires +++ b/tests.requires @@ -1,2 +1,3 @@ mock pytest +rpm-python