mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix missing freezer_includes for esky
This commit is contained in:
parent
a1a1b3cd2a
commit
63fab92ed6
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
@ -172,7 +172,8 @@ freezer_includes = [
|
|||
'ast',
|
||||
'difflib',
|
||||
'distutils',
|
||||
'distutils.version'
|
||||
'distutils.version',
|
||||
'json',
|
||||
]
|
||||
|
||||
if sys.platform.startswith('win'):
|
||||
|
@ -188,7 +189,8 @@ if sys.platform.startswith('win'):
|
|||
setup_kwargs['install_requires'] += '\nwmi'
|
||||
elif sys.platform.startswith('linux'):
|
||||
freezer_includes.extend([
|
||||
'yum'
|
||||
'yum',
|
||||
'spwd',
|
||||
])
|
||||
|
||||
if 'bdist_esky' in sys.argv:
|
||||
|
|
Loading…
Add table
Reference in a new issue