File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 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
724By default, mypy treats an annotation of `` bytes `` as permitting `` bytearray `` and `` memoryview `` .
You can’t perform that action at this time.
0 commit comments