Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some more details for the next release notes #18364

Merged
merged 3 commits into from
Dec 30, 2024
Merged
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## Next release

### Drop Support for Python 3.8

Mypy no longer supports running with Python 3.8, which has reached end-of-life.
For the time being, it is still possible to type check older code using Python 3.9+
by passing `--python-version 3.8` as argument. This will be dropped in the first half of 2025!
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cdce8p marked this conversation as resolved.
Show resolved Hide resolved
Contributed by Marc Mueller (PR [17492](https://github.com/python/mypy/pull/17492)).

### Mypy wheels for aarch64

Precompiled wheels for `manylinux_aarch64` are now available for download on PyPI.
Contributed by Christian Bundy (PR [mypy_mypyc-wheels#76](https://github.com/mypyc/mypy_mypyc-wheels/pull/76))
cdce8p marked this conversation as resolved.
Show resolved Hide resolved

### `--strict-bytes`

By default, mypy treats an annotation of ``bytes`` as permitting ``bytearray`` and ``memoryview``.
Expand Down
Loading