From c77e84083378202b7e7624fe0db9849d2bcf806d Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Thu, 10 Apr 2014 04:36:23 -0400 Subject: [PATCH] BLD: Peg CI versions of lint checker libraries. Match the revisions found in the dev requirements file, so that the versions used during development and continuous integration. Pegging the versions in two separate places may end being brittle, but suppress the build failure because the unpegged installation of flake8 pulled in newer versions of pyflakes and pep8. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0f4d39c9..c5ee37dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: - conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION - source activate testenv - conda install --yes -c https://conda.binstar.org/twiecki numpy==1.8.0 scipy nose matplotlib pandas Cython patsy statsmodels tornado pyparsing xlrd mock pytz requests six dateutil ta-lib logbook - - pip install flake8 nose-parameterized==0.3.3 nose-ignore-docstring==0.2 + - pip install pyflakes==0.7.3 pep8==1.4.6 mccabe==0.2.1 flake8==2.1.0 nose-parameterized==0.3.3 nose-ignore-docstring==0.2 before_script: - "flake8 zipline tests" script: