From 1a18dfd65147b4734a78b388cc4c3ec69d88600f Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Wed, 22 Jul 2020 20:48:24 +0300 Subject: [PATCH] doc: mention mypy<0.750 doesn't work in typing changelog --- doc/en/changelog.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/en/changelog.rst b/doc/en/changelog.rst index ef5528f69c6..1107a93dd4c 100644 --- a/doc/en/changelog.rst +++ b/doc/en/changelog.rst @@ -170,9 +170,10 @@ Features noticing type errors indicating incorrect usage. If you run into an error that you believe to be incorrect, please let us know in an issue. - The types were developed against mypy version 0.780. Older versions may work, - but we recommend using at least this version. Other type checkers may work as - well, but they are not officially verified to work by pytest yet. + The types were developed against mypy version 0.780. Versions before 0.750 + are known not to work. We recommend using the latest version. Other type + checkers may work as well, but they are not officially verified to work by + pytest yet. - `#4049 `_: Introduced a new hook named `pytest_warning_recorded` to convey information about warnings captured by the internal `pytest` warnings plugin.