Drop support for running with Python 3.8 by cdce8p · Pull Request #17492 · python/mypy

hauntsaninja

approved these changes Jul 7, 2024

@cdce8p

@cdce8p

Co-authored-by: Ali Hamdan <ali.hamdan.dev@gmail.com>

hauntsaninja pushed a commit that referenced this pull request

May 28, 2025
Drop last remaining support for Python 3.8. Support for running with 3.8
was removed in #17492 already. This PR removes the option to use 3.8
with `--python-version` since the type stubs only support 3.9+, see
#18930.

ilevkivskyi pushed a commit that referenced this pull request

Nov 28, 2025
Similar to last year (#17492), start by dropping support for running
mypy with Python 3.9.
Users will still be able to type check 3.9 code with `--python-version
3.9` until typeshed drops the support for it.

Refs #20154