From 2299cdce61cf19f0f1cba19b783a804ac7227f68 Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Mon, 16 Aug 2021 14:05:49 +0200 Subject: [PATCH] Remove support for Python 3.6 This version goes end-of-life before we will release GROAMCS 2022, so we should stop testing it. We decided this a long time ago, but didn't actually do it. Refs #3708 --- admin/containers/utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/containers/utility.py b/admin/containers/utility.py index dfa27e331f..55f620ee90 100644 --- a/admin/containers/utility.py +++ b/admin/containers/utility.py @@ -135,7 +135,7 @@ parser.add_argument('--doxygen', type=str, nargs='?', const='1.8.5', default=Non help='Add doxygen environment for documentation builds. Also adds other requirements needed for final docs images.') # Supported Python versions for maintained branches. -_python_versions = ['3.6.10', '3.7.7', '3.8.2', '3.9.1'] +_python_versions = ['3.7.7', '3.8.2', '3.9.1'] parser.add_argument('--venvs', nargs='*', type=str, default=_python_versions, help='List of Python versions ("major.minor.patch") for which to install venvs. ' 'Default: {}'.format(' '.join(_python_versions))) -- 2.22.0