Skip to content

Commit

Permalink
Work around flake8-pep257==1.0.3 / pep257==0.7.0 incompatibility
Browse files Browse the repository at this point in the history
This has already been reported to the flake8-pep257 plug-in issue
tracker [1] so I'm hoping this is a temporary workaround :-).

[1] Robpol86/flake8-pydocstyle#4
  • Loading branch information
xolox committed Oct 18, 2015
1 parent 84b584c commit f1acfef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes openssh-server
install:
- pip install --requirement=requirements-flake8.txt
- pip install coveralls
- LC_ALL=C pip install .
script:
Expand Down
14 changes: 14 additions & 0 deletions requirements-flake8.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Travis CI builds run flake8 with the pep257 plug-in to validate the coding
# style and break the build on (unexpected) violations. However recently I
# encountered a failure [1] that seems to be an incompatibility between
# flake8-pep257==1.0.3 and pep257==0.7.0. This incompatibility has already
# been reported [2].
#
# [1] https://travis-ci.org/xolox/python-coloredlogs/builds/85401773
# [2] https://github.com/Robpol86/flake8-pep257/issues/4

flake8==2.4.1
flake8-pep257==1.0.3
pep257==0.6.0
pep8==1.5.7
pyflakes==0.8.1

0 comments on commit f1acfef

Please sign in to comment.