Skip to content

Commit 744c95f

Browse files
committed
Pin versions of used pip packages
To avoid breaking our builds because of changes in pip packages we use for testing it makes sense to introduce version pinning to the travis build. (see #287, #295)
1 parent 8cdd7b9 commit 744c95f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ python:
99
- 3.5
1010

1111
install:
12-
- pip install flake8
12+
- pip install pep8==1.7.0
13+
- pip install pyflakes==1.0.0
14+
- pip install flake8==2.5.2
1315

1416
before_script:
1517
- flake8 ./exercises/ --max-line-length=99 --select=E,W

requirements-travis.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
flake8==2.5.2
2+
pep8==1.7.0
3+
pyflakes==1.0.0

0 commit comments

Comments
 (0)