[Piglit] [PATCH 4/7] appveyor: Use requirement files to install dependencies with pip

Dylan Baker dylan at pnwbakers.com
Tue Jun 13 20:59:50 UTC 2017


This allows the dependencies to be centrally located, rather than in
multiple places.

Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 appveyor.yml | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index 8a78f61f7..520339c87 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -64,12 +64,9 @@ install:
   # Setup Python 3
   - set Path=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%Path%
   - pip --version
-  # Install Six
-  - pip install six
-  # Install Mako
-  - pip install Mako==1.0.6
-  # Install Numpy
-  - pip install numpy==1.12.1
+  # Install minimum python requirements
+  - pip install -r python-requirements/minimum.txt
+  - pip install -r python-requirements/python3-extra.txt
   # Check CMake
   - cmake --version
   # Install Ninja
-- 
2.13.1



More information about the Piglit mailing list