소스 검색

Specified exact versions of packages to fix travis build issue

Geoffrey Irons 7 년 전
부모
커밋
4ac72488be
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .travis.yml
  2. 3 0
      requirements.txt

+ 1 - 1
.travis.yml

@@ -9,7 +9,7 @@ cache:
 before_install:
 before_install:
     - sudo apt-get update
     - sudo apt-get update
     - sudo apt-get install --no-install-recommends -y libsdl1.2debian python3-pip
     - sudo apt-get install --no-install-recommends -y libsdl1.2debian python3-pip
-    - sudo pip3 install pylint pycodestyle
+    - sudo pip3 install -r requirements.txt
 
 
 install:
 install:
     - tests/install_blender.sh
     - tests/install_blender.sh

+ 3 - 0
requirements.txt

@@ -0,0 +1,3 @@
+# Python requirements for development
+pylint==1.9.2
+pycodestyle==2.4.0