mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Remove SALT_CLOUD_REQS from setup.py --> develop
Since requirements/cloud.txt was removed, don't reference it in setup.py
This commit is contained in:
parent
4cbef0f7e4
commit
9a6b159422
1 changed files with 1 additions and 3 deletions
4
setup.py
4
setup.py
|
@ -105,7 +105,6 @@ SALT_VERSION = os.path.join(os.path.abspath(SETUP_DIRNAME), 'salt', 'version.py'
|
|||
SALT_VERSION_HARDCODED = os.path.join(os.path.abspath(SETUP_DIRNAME), 'salt', '_version.py')
|
||||
SALT_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'base.txt')
|
||||
SALT_ZEROMQ_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'zeromq.txt')
|
||||
SALT_CLOUD_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'cloud.txt')
|
||||
SALT_RAET_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'raet.txt')
|
||||
|
||||
# Salt SSH Packaging Detection
|
||||
|
@ -740,8 +739,7 @@ class SaltDistribution(distutils.dist.Distribution):
|
|||
def _property_extras_require(self):
|
||||
if self.ssh_packaging:
|
||||
return {}
|
||||
return {'RAET': _parse_requirements_file(SALT_RAET_REQS),
|
||||
'Cloud': _parse_requirements_file(SALT_CLOUD_REQS)}
|
||||
return {'RAET': _parse_requirements_file(SALT_RAET_REQS)}
|
||||
|
||||
@property
|
||||
def _property_scripts(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue