From 5e00e6cf23624e1047597493a98a0702a589e6f9 Mon Sep 17 00:00:00 2001 From: Frank Lee Date: Fri, 22 Apr 2022 14:17:51 +0800 Subject: [PATCH] [setup] allow installation with python 3.6 (#834) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a4308f0f7..deb26b85d 100644 --- a/setup.py +++ b/setup.py @@ -217,7 +217,7 @@ setup( [console_scripts] colossalai=colossalai.cli:cli ''', - python_requires='>=3.7', + python_requires='>=3.6', classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Apache Software License',