You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ariatosca.apache.org by av...@apache.org on 2017/03/09 15:05:54 UTC

incubator-ariatosca git commit: Change parameter name in wagon.install to venv

Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-96-less-strict-dependencies f01f082a9 -> bbf40625c


Change parameter name in wagon.install to venv

The previous requirements file specified wagon==0.5.0.
In the new requirements file we don't specify a version for wagon, so we
get the latest - 0.6.0.
In this version, wagon.install's virtualenv argument was changed to
venv.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/bbf40625
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/bbf40625
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/bbf40625

Branch: refs/heads/ARIA-96-less-strict-dependencies
Commit: bbf40625c6736ac71fc084665df14d6fca22c433
Parents: f01f082
Author: Avia Efrat <av...@gigaspaces.com>
Authored: Thu Mar 9 17:03:05 2017 +0200
Committer: Avia Efrat <av...@gigaspaces.com>
Committed: Thu Mar 9 17:03:05 2017 +0200

----------------------------------------------------------------------
 aria/orchestrator/plugin.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/bbf40625/aria/orchestrator/plugin.py
----------------------------------------------------------------------
diff --git a/aria/orchestrator/plugin.py b/aria/orchestrator/plugin.py
index 381504e..d815754 100644
--- a/aria/orchestrator/plugin.py
+++ b/aria/orchestrator/plugin.py
@@ -92,7 +92,7 @@ class PluginManager(object):
                 install_args='--prefix="{prefix}" --constraint="{constraint}"'.format(
                     prefix=prefix,
                     constraint=constraint.name),
-                virtualenv=os.environ.get('VIRTUAL_ENV'))
+                venv=os.environ.get('VIRTUAL_ENV'))
         finally:
             os.remove(constraint_path)