[Common] Replace platform.linux_distribution function

As of python 3.5, this function is marked as deprecated.
So, [distro][1] is the one we will use (this package is listed at the
example package in the python's [docs][2]).

[1] https://pypi.org/project/distro/
[2] https://docs.python.org/3/library/platform.html#platform.dist
This commit is contained in:
Calum Lind 2019-05-08 21:24:45 +01:00
parent 1a134cab1b
commit 2296906ed3
4 changed files with 15 additions and 3 deletions

View file

@ -551,6 +551,7 @@ 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']