From ab4661f6fd8e1f0abe7602b2334c52de176f6951 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 9 May 2019 09:20:29 +0100 Subject: [PATCH] [Packaging] Remove distro from setuptool requirements The distro package is only available for Ubuntu 18.04 onwards so don't require it as it will runtime error about missing module. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 17e203bda..9ff305ef4 100755 --- a/setup.py +++ b/setup.py @@ -551,7 +551,6 @@ install_requires = [ "py2-ipaddress; sys_platform == 'win32' and python_version == '2'", "certifi; sys_platform == 'win32'", 'zope.interface', - "distro; 'win' not in sys_platform", ] tests_require = ['pytest', 'pytest-twisted']