mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Add basic shareable module classifier
This commit is contained in:
parent
c822ba2ed0
commit
7fc1dbbce3
@ -94,6 +94,20 @@ def thin_path(cachedir):
|
|||||||
return os.path.join(cachedir, 'thin', 'thin.tgz')
|
return os.path.join(cachedir, 'thin', 'thin.tgz')
|
||||||
|
|
||||||
|
|
||||||
|
def _is_shareable(mod):
|
||||||
|
'''
|
||||||
|
Return True if module is share-able between major Python versions.
|
||||||
|
|
||||||
|
:param mod:
|
||||||
|
:return:
|
||||||
|
'''
|
||||||
|
# This list is subject to change
|
||||||
|
shareable = ['salt', 'jinja2',
|
||||||
|
'msgpack', 'certifi']
|
||||||
|
|
||||||
|
return os.path.basename(mod) in shareable
|
||||||
|
|
||||||
|
|
||||||
def _add_dependency(container, obj):
|
def _add_dependency(container, obj):
|
||||||
'''
|
'''
|
||||||
Add a dependency to the top list.
|
Add a dependency to the top list.
|
||||||
|
Loading…
Reference in New Issue
Block a user