Use the locked packaging requirements

This commit is contained in:
Pedro Algarvio 2020-04-27 14:54:53 +01:00
parent 67b25add12
commit 0706ce9aa5
No known key found for this signature in database
GPG key ID: BB36BF6584A298FF

View file

@ -117,15 +117,29 @@ SALT_CRYPTO_REQS = os.path.join(
SALT_ZEROMQ_REQS = os.path.join(
os.path.abspath(SETUP_DIRNAME), "requirements", "zeromq.txt"
)
SALT_LONG_DESCRIPTION_FILE = os.path.join(os.path.abspath(SETUP_DIRNAME), "README.rst")
SALT_OSX_REQS = [
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "osx", "req.txt"),
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "osx", "req_pyobjc.txt"),
# OSX packages already defined locked requirements
os.path.join(
os.path.abspath(SETUP_DIRNAME),
"requirements",
"static",
"pkg",
"py{}.{}".format(*sys.version_info),
"darwin.txt",
)
]
SALT_WINDOWS_REQS = [
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "windows", "req.txt"),
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "windows", "req_win.txt"),
# Windows packages already defined locked requirements
os.path.join(
os.path.abspath(SETUP_DIRNAME),
"requirements",
"static",
"pkg",
"py{}.{}".format(*sys.version_info),
"windows.txt",
)
]
SALT_LONG_DESCRIPTION_FILE = os.path.join(os.path.abspath(SETUP_DIRNAME), "README.rst")
# Salt SSH Packaging Detection
PACKAGED_FOR_SALT_SSH_FILE = os.path.join(