Skip to content

Commit a73e957

Browse files
cdce8phauntsaninja
andauthored
Add some more details for the next release notes (#18364)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
1 parent ac6151a commit a73e957

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## Next release
44

5+
### Drop Support for Python 3.8
6+
7+
Mypy no longer supports running with Python 3.8, which has reached end-of-life.
8+
When running mypy with Python 3.9+, it is still possible to type check code
9+
that needs to support Python 3.8 with the `--python-version 3.8` argument.
10+
Support for this will be dropped in the first half of 2025!
11+
Contributed by Marc Mueller (PR [17492](https://github.com/python/mypy/pull/17492)).
12+
13+
### Mypyc accelerated mypy wheels for aarch64
14+
15+
Mypy can compile itself to C extension modules using mypyc. This makes mypy 3-5x faster
16+
than if mypy is interpreted with pure Python. We now build and upload mypyc accelerated
17+
mypy wheels for `manylinux_aarch64` to PyPI, making it easy for users on such platforms
18+
to realise this speedup.
19+
20+
Contributed by Christian Bundy (PR [mypy_mypyc-wheels#76](https://github.com/mypyc/mypy_mypyc-wheels/pull/76))
21+
522
### `--strict-bytes`
623

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

0 commit comments

Comments
 (0)