Drop feature to install old versions

The feature is infeasible to maintain, so drop the feature from release.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2021-05-24 11:27:34 +09:00
parent 55563c61c7
commit b066a8654c
7 changed files with 4 additions and 519 deletions

View File

@@ -5,7 +5,7 @@ def test_cli_help(capsys):
expected = "".join(
[
"usage: aqt [-h] [-c CONFIG] [--logging-conf LOGGING_CONF] [--logger LOGGER]\n",
" {install,doc,examples,src,tool,list,offline_installer,help} ...\n",
" {install,doc,examples,src,tool,list,help} ...\n",
"\n",
"Installer for Qt SDK.\n",
"\n",
@@ -20,7 +20,7 @@ def test_cli_help(capsys):
"subcommands:\n",
" Valid subcommands\n",
"\n",
" {install,doc,examples,src,tool,list,offline_installer,help}\n",
" {install,doc,examples,src,tool,list,help}\n",
" subcommand for aqt Qt installer\n",
]
)
@@ -68,7 +68,7 @@ def test_cli_launch_with_no_argument(capsys):
expected = "".join(
[
"usage: aqt [-h] [-c CONFIG] [--logging-conf LOGGING_CONF] [--logger LOGGER]\n",
" {install,doc,examples,src,tool,list,offline_installer,help} ...\n",
" {install,doc,examples,src,tool,list,help} ...\n",
"\n",
"Installer for Qt SDK.\n",
"\n",
@@ -83,7 +83,7 @@ def test_cli_launch_with_no_argument(capsys):
"subcommands:\n",
" Valid subcommands\n",
"\n",
" {install,doc,examples,src,tool,list,offline_installer,help}\n",
" {install,doc,examples,src,tool,list,help}\n",
" subcommand for aqt Qt installer\n",
]
)