mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Bump distro from 1.6.0 to 1.7.0 (#1658)
* 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]
This commit is contained in:
parent
f08687b960
commit
942e09e59e
5 changed files with 1433 additions and 1 deletions
54
lib/distro/__init__.py
Normal file
54
lib/distro/__init__.py
Normal file
|
@ -0,0 +1,54 @@
|
|||
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__
|
4
lib/distro/__main__.py
Normal file
4
lib/distro/__main__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from .distro import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
1374
lib/distro/distro.py
Normal file
1374
lib/distro/distro.py
Normal file
File diff suppressed because it is too large
Load diff
0
lib/distro/py.typed
Normal file
0
lib/distro/py.typed
Normal file
|
@ -10,7 +10,7 @@ certifi==2021.10.8
|
|||
cheroot==8.6.0
|
||||
cherrypy==18.6.1
|
||||
cloudinary==1.29.0
|
||||
distro==1.6.0
|
||||
distro==1.7.0
|
||||
dnspython==2.2.0
|
||||
facebook-sdk==3.1.0
|
||||
future==0.18.2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue