summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2017-10-25 10:43:25 -0700
committerGitHub <noreply@github.com>2017-10-25 10:43:25 -0700
commit9d409e10f5fc6188e4b774e6b757ab25dfabefed (patch)
tree36066f108581c2315b948a2a01dc764e384b394d
parent47c9021401a69d407a3e730012824cae75dd66f9 (diff)
downloadbinaryen-9d409e10f5fc6188e4b774e6b757ab25dfabefed.tar.gz
binaryen-9d409e10f5fc6188e4b774e6b757ab25dfabefed.tar.bz2
binaryen-9d409e10f5fc6188e4b774e6b757ab25dfabefed.zip
Pin flake8 to specific version on travis (#1242)
-rw-r--r--.travis.yml2
-rw-r--r--appveyor.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 60c5e5619..c3c074263 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@ jobs:
- export CXX="${CXX_COMPILER}"
- export ASAN_OPTIONS="symbolize=1"
install:
- - pip install --user flake8
+ - pip install --user flake8==3.4.1
before_script:
# Check the style of a subset of Python code until the other code is updated.
- flake8 ./scripts/
diff --git a/appveyor.yml b/appveyor.yml
index fb8199394..7d6e62964 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -21,7 +21,7 @@ environment:
PARALLEL_FLAG: "/m:"
install:
- - pip install flake8
+ - pip install flake8==3.4.1
before_build:
# Check the style of a subset of Python code until the other code is updated.