WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.10.0 (2025.MM.DD)

BACKWARDS COMPATIBILITY:
* Dropped support for EOL Python 3.6 [[#377](https://github.com/python-distro/distro/pull/377)]
* Deprecated the `distro.uname_attr()` and `distro.uname_info()`.
Use `os.uname()` or `platform.uname()` instead [[#370](https://github.com/python-distro/distro/pull/370)]

ENHANCEMENTS:
* Added support for Armbian release info (`/etc/armbian-release`) [[#366](https://github.com/python-distro/distro/pull/366)]

BUG FIXES:
* Ignored `n/a` from `lsb_release` output
* Handled `CalledProcessError` when calling `lsb_release` and `uname`

## 1.9.0 (2023.12.19)

ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion src/distro/distro.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Python 3.7
TypedDict = dict # type: ignore[assignment]

__version__ = "1.9.0"
__version__ = "1.10.0"


class VersionDict(TypedDict):
Expand Down