diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2018-04-06 15:30:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-06 15:30:41 +0000 |
commit | 1748ff0081f14803b7a486d80007e7cd36872853 (patch) | |
tree | 6d758103ce9087074f942231e679f436cf5f2835 | |
parent | 61c202d9b8ba132b90d6770c5dab7147b60db019 (diff) | |
parent | 3c89b317125cf48412829cb10bb96fe29c95adac (diff) |
Merge "Fix pip version"
-rwxr-xr-x | bootstrap/installer-docker.sh-template | 3 | ||||
-rw-r--r-- | bootstrap/pom.xml | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/installer-docker.sh-template b/bootstrap/installer-docker.sh-template index b056ca1..9c19fdb 100755 --- a/bootstrap/installer-docker.sh-template +++ b/bootstrap/installer-docker.sh-template @@ -94,6 +94,9 @@ chmod 600 ${PVTKEY} virtualenv dcaeinstall source dcaeinstall/bin/activate +# forcing pip version (pip>=10.0.0 no longer support use wheel) +pip install pip==9.0.3 + # Install Cloudify pip install cloudify==3.4.0 diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml index c617385..9f1a043 100644 --- a/bootstrap/pom.xml +++ b/bootstrap/pom.xml @@ -28,7 +28,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <groupId>org.onap.dcaegen2.deployments</groupId> <artifactId>bootstrap</artifactId> <name>dcaegen2-deployments-bootstrap</name> - <version>1.1.0-SNAPSHOT</version> + <version>1.1.2-SNAPSHOT</version> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |