From d1e50e6381a8ac0990fe46f3c74e710c3b14f93c Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Mon, 3 Jan 2022 11:23:10 +0000 Subject: [PATCH] Help for --setup-py: don't say it's the default --- flit/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flit/__init__.py b/flit/__init__.py index 8af9b34b..57f689ea 100644 --- a/flit/__init__.py +++ b/flit/__init__.py @@ -82,12 +82,11 @@ def main(argv=None): parser_build.add_argument('--setup-py', action='store_true', help=("Generate a setup.py file in the sdist. " "The sdist will work with older tools that predate PEP 517. " - "This is the default for now, but will change in a future version." ) ) parser_build.add_argument('--no-setup-py', action='store_true', - help=("Don't generate a setup.py file in the sdist. " + help=("Don't generate a setup.py file in the sdist. This is the default. " "The sdist will only work with tools that support PEP 517, " "but the wheel will still be usable by any compatible tool." )