bugfix of package error 91/31491/1
authorMatthewLi <matthew.lijun@huawei.com>
Thu, 23 Mar 2017 07:34:27 +0000 (03:34 -0400)
committerMatthewLi <matthew.lijun@huawei.com>
Thu, 23 Mar 2017 07:36:44 +0000 (03:36 -0400)
JIRA: DOVETAIL-376

Change-Id: I91e0efff01d445e3f74718d730c8ff48c6413b26
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
docker/Dockerfile
requirements.txt
setup.py

index 68579e7..e401368 100644 (file)
@@ -6,9 +6,12 @@ RUN \
     apt-get update \
 && \
     apt-get install -y \
-        python-pip \
+        gcc \
         git \
         vim \
+        python-dev \
+        python-mock \
+        python-pip \
         apt-transport-https \
         --no-install-recommends \
 && \
@@ -26,6 +29,8 @@ RUN \
     mkdir -p ${REPOS_DIR}/results \
 && \
     pip install -U pip \
+&& \
+    pip install -U pytz \
 && \
     pip install -r ${REPOS_DIR}/requirements.txt \
 && \
index 7b9b7d9..ae64322 100644 (file)
@@ -1,7 +1,7 @@
 Click
-Jinja2>=2.6
-pbr>=1.8
-PyYAML>=3.10
+Jinja2==2.8
+pbr>=2.0.0
+PyYAML==3.11
 python-openstackclient==3.9.0
 requests==2.10.0
-six>=1.9.0
+six==1.10.0
index b9f6e14..aeb4bf3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -10,5 +10,5 @@
 import setuptools
 
 setuptools.setup(
-    setup_requires=['pbr>=1.8'],
+    setup_requires=['pbr>=2.0.0'],
     pbr=True)