[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.
This commit is contained in:
Calum Lind 2019-05-09 09:20:29 +01:00
parent 396cadefda
commit ab4661f6fd
1 changed files with 0 additions and 1 deletions

View File

@ -551,7 +551,6 @@ install_requires = [
"py2-ipaddress; sys_platform == 'win32' and python_version == '2'", "py2-ipaddress; sys_platform == 'win32' and python_version == '2'",
"certifi; sys_platform == 'win32'", "certifi; sys_platform == 'win32'",
'zope.interface', 'zope.interface',
"distro; 'win' not in sys_platform",
] ]
tests_require = ['pytest', 'pytest-twisted'] tests_require = ['pytest', 'pytest-twisted']