Reverted to allowing Python >= 3.6

This commit is contained in:
David Murphy 2022-12-15 23:09:13 -07:00 committed by Megan Wilhite
parent 0bc4a359a6
commit fb1178de60

View file

@ -947,12 +947,13 @@ class SaltDistribution(distutils.dist.Distribution):
with open(SALT_LONG_DESCRIPTION_FILE, encoding="utf-8") as f:
self.long_description = f.read()
self.long_description_content_type = "text/x-rst"
self.python_requires = ">=3.7"
self.python_requires = ">=3.6"
self.classifiers = [
"Programming Language :: Python",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",