From 7785b6035e919180593f027305171e4a844a947b Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Sun, 4 Dec 2022 18:47:57 +0000 Subject: [PATCH] Stop saying mypy is beta software (#14251) Ref #13685 cc @Michael0x2a @JukkaL @hauntsaninja Co-authored-by: Alex Waygood --- README.md | 9 +-------- docs/source/index.rst | 6 +++--- setup.py | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index dd09d15ff152..a8b26f7abd62 100644 --- a/README.md +++ b/README.md @@ -160,14 +160,7 @@ To get started with developing mypy, see [CONTRIBUTING.md](CONTRIBUTING.md). If you need help getting started, don't hesitate to ask on [gitter](https://gitter.im/python/typing). -Development status ------------------- - -Mypy is beta software, but it has already been used in production -for several years at Dropbox and in many other organizations, and -it has an extensive test suite. - -mypyc and compiled version of mypy +Mypyc and compiled version of mypy ---------------------------------- [Mypyc](https://github.com/mypyc/mypyc) uses Python type hints to compile Python diff --git a/docs/source/index.rst b/docs/source/index.rst index 1f77e951843d..27b3a078af6c 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -39,10 +39,10 @@ understand, debug, and maintain. .. note:: - Mypy is used in production by many companies and projects, but mypy is - officially beta software. There will be occasional changes + Although mypy is production ready, there will be occasional changes that break backward compatibility. The mypy development team tries to - minimize the impact of changes to user code. + minimize the impact of changes to user code. In case of a major breaking + change, mypy's major version will be bumped. Contents -------- diff --git a/setup.py b/setup.py index 669e0cc4b615..a148237f0b95 100644 --- a/setup.py +++ b/setup.py @@ -171,7 +171,7 @@ def run(self): classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",