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
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

## Unreleased
- Maintenance: Added `py.typed` marker file, signalling typing support
- packaging.version: Updated to packaging v26.0
- packaging.version: Restored backward-compatibility with `distutils.version`
- packaging.version: Removed PEP 570 compatibility to support EOL Pythons
- packaging.version: Compatibility adjustments for Python 3.6 and 3.7

## 2025-02-11 v0.3.1
- Fixed packaging
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ without anything else.
It also includes the original `distutils.version` implementation,
for those who need it going forward.

To retain backward compatibility with earlier versions of Python,
syntax features like [PEP 570] have been removed from the original code.

## Rationale

Expand Down Expand Up @@ -120,3 +122,4 @@ excellent development tooling.
[verlib2]: https://pypi.org/project/verlib2/
[PEP 386]: https://peps.python.org/pep-0386/
[PEP 440]: https://peps.python.org/pep-0440/
[PEP 570]: https://peps.python.org/pep-0570/
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ dynamic = [
]
dependencies = [
"importlib-metadata; python_version<'3.8'",
"typing-extensions; python_version<'3.8'",
]
optional-dependencies.develop = [
"poethepoet<1",
Expand Down
Loading
Loading