mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix easy_install'ation on Windows
There is no 'wmi' package on PyPI.
This commit is contained in:
parent
207c9aeb93
commit
f617888bb4
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -215,7 +215,7 @@ if sys.platform.startswith('win'):
|
|||
'_winreg',
|
||||
'wmi',
|
||||
])
|
||||
setup_kwargs['install_requires'].append('wmi')
|
||||
setup_kwargs['install_requires'].append('WMI')
|
||||
elif sys.platform.startswith('linux'):
|
||||
freezer_includes.extend([
|
||||
'yum',
|
||||
|
|
Loading…
Add table
Reference in a new issue