mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
942e09e59e
* Bump distro from 1.6.0 to 1.7.0 Bumps [distro](https://github.com/python-distro/distro) from 1.6.0 to 1.7.0. - [Release notes](https://github.com/python-distro/distro/releases) - [Changelog](https://github.com/python-distro/distro/blob/master/CHANGELOG.md) - [Commits](https://github.com/python-distro/distro/compare/v1.6.0...v1.7.0) --- updated-dependencies: - dependency-name: distro dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update distro==1.7.0 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
55 lines
981 B
Python
55 lines
981 B
Python
from .distro import (
|
|
NORMALIZED_DISTRO_ID,
|
|
NORMALIZED_LSB_ID,
|
|
NORMALIZED_OS_ID,
|
|
LinuxDistribution,
|
|
__version__,
|
|
build_number,
|
|
codename,
|
|
distro_release_attr,
|
|
distro_release_info,
|
|
id,
|
|
info,
|
|
like,
|
|
linux_distribution,
|
|
lsb_release_attr,
|
|
lsb_release_info,
|
|
major_version,
|
|
minor_version,
|
|
name,
|
|
os_release_attr,
|
|
os_release_info,
|
|
uname_attr,
|
|
uname_info,
|
|
version,
|
|
version_parts,
|
|
)
|
|
|
|
__all__ = [
|
|
"NORMALIZED_DISTRO_ID",
|
|
"NORMALIZED_LSB_ID",
|
|
"NORMALIZED_OS_ID",
|
|
"LinuxDistribution",
|
|
"build_number",
|
|
"codename",
|
|
"distro_release_attr",
|
|
"distro_release_info",
|
|
"id",
|
|
"info",
|
|
"like",
|
|
"linux_distribution",
|
|
"lsb_release_attr",
|
|
"lsb_release_info",
|
|
"major_version",
|
|
"minor_version",
|
|
"name",
|
|
"os_release_attr",
|
|
"os_release_info",
|
|
"uname_attr",
|
|
"uname_info",
|
|
"version",
|
|
"version_parts",
|
|
]
|
|
|
|
__version__ = __version__
|