Skip to content

Commit

Permalink
CY-886: don't automatically upgrade wheels/setuptools on the new virt…
Browse files Browse the repository at this point in the history
…ualenv
  • Loading branch information
isaac-s committed Dec 12, 2018
1 parent 4c4d1d7 commit e84220a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions agent_packager/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def make_virtualenv(virtualenv_dir, python='/usr/bin/python'):
:param string virtualenv_dir: path of virtualenv to create
"""
lgr.debug('virtualenv_dir: {0}'.format(virtualenv_dir))
p = run('virtualenv -p {0} {1}'.format(python, virtualenv_dir))
p = run('virtualenv --no-download -p {0} {1}'.format(python, virtualenv_dir))
if not p.returncode == 0:
lgr.error('Could not create venv: {0}'.format(virtualenv_dir))
lgr.exception('Could not create venv: {0}'.format(virtualenv_dir))
sys.exit(codes.errors['could_not_create_virtualenv'])


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ def read(*parts):

setup(
name='cloudify-agent-packager',
version='4.0.2',
version='4.0.3',
url='https://github.com/cloudify-cosmo/cloudify-agent-packager',
author='Gigaspaces',
author_email='[email protected]',
author='Cloudify',
author_email='[email protected]',
license='LICENSE',
platforms='All',
description='Creates Cloudify Agent Packages',
Expand Down

0 comments on commit e84220a

Please sign in to comment.