File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def make_virtualenv(virtualenv_dir, python='/usr/bin/python'):
3434 :param string virtualenv_dir: path of virtualenv to create
3535 """
3636 lgr .debug ('virtualenv_dir: {0}' .format (virtualenv_dir ))
37- command = 'virtualenv -p {0} {1}' .format (python , virtualenv_dir )
37+ command = 'virtualenv --no-download - p {0} {1}' .format (python , virtualenv_dir )
3838
3939 if sys .version_info [:2 ] == (2 , 6 ):
4040 # python 2.6 will fail when creating a virtualenv because it will
@@ -46,7 +46,7 @@ def make_virtualenv(virtualenv_dir, python='/usr/bin/python'):
4646
4747 p = run (command )
4848 if not p .returncode == 0 :
49- lgr .error ('Could not create venv: {0}' .format (virtualenv_dir ))
49+ lgr .exception ('Could not create venv: {0}' .format (virtualenv_dir ))
5050 sys .exit (codes .errors ['could_not_create_virtualenv' ])
5151
5252 if sys .version_info [:2 ] == (2 , 6 ):
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ def read(*parts):
1212
1313setup (
1414 name = 'cloudify-agent-packager' ,
15- version = '4.0.2 ' ,
15+ version = '4.0.3 ' ,
1616 url = 'https://github.com/cloudify-cosmo/cloudify-agent-packager' ,
17- author = 'Gigaspaces ' ,
18- author_email = 'cosmo-admin@gigaspaces.com ' ,
17+ author = 'Cloudify ' ,
18+ author_email = 'hello@cloudify.co ' ,
1919 license = 'LICENSE' ,
2020 platforms = 'All' ,
2121 description = 'Creates Cloudify Agent Packages' ,
You can’t perform that action at this time.
0 commit comments