mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Reverted to allowing Python >= 3.6
This commit is contained in:
parent
0bc4a359a6
commit
fb1178de60
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue