[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:
parent
396cadefda
commit
ab4661f6fd
1
setup.py
1
setup.py
|
@ -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']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue