Skip to content
Snippets Groups Projects
Commit 6a9618c9 authored by jkerdreu's avatar jkerdreu
Browse files

Force use of pip to install dependencies (to enforce wheel usage)

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/0.7@2835 b32b6428-25c9-4566-ad07-03861ab6144f
parent d1a5a4f1
No related branches found
No related tags found
No related merge requests found
......@@ -24,10 +24,12 @@ def title(msg):
def setup_develop(path):
title(path)
os.system('cd %s && pip install -e .' % path)
os.system('cd %s && %s setup.py develop' % (path,PYTHON))
def setup_install(path):
title(path)
os.system('cd %s && pip install -e .' % path)
os.system('cd %s && %s setup.py install' % (path,PYTHON))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment