From aea49b06f215a2c7a13157158d5628cd4e6ee291 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Sat, 8 Jun 2019 19:04:01 -0700 Subject: [PATCH] Document mypy as "beta" instead of "alpha" software (#6962) In https://github.com/python/mypy/issues/6740, I think we all pretty much unanimously agreed mypy ought to be labeled as "beta" at the absolute minimum. So, might as well just do the switch now. --- README.md | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4acf6c33f3ab5..928a65e21476d 100644 --- a/README.md +++ b/README.md @@ -238,8 +238,8 @@ For more on the tests, see [Test README.md](test-data/unit/README.md) Development status ------------------ -Mypy is alpha software, but it has already been used in production -for well over a year at Dropbox, and it has an extensive test suite. +Mypy is beta software, but it has already been used in production +for several years at Dropbox, and it has an extensive test suite. See [the roadmap](ROADMAP.md) if you are interested in plans for the future. diff --git a/setup.py b/setup.py index 37cb98e1070a1..289c5a576424f 100644 --- a/setup.py +++ b/setup.py @@ -146,7 +146,7 @@ def run(self): classifiers = [ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',