Skip to content

Commit

Permalink
fix flake8-pyi python_version conditional in test-requirements (pytho…
Browse files Browse the repository at this point in the history
…n#3398)

flake8-pyi only works with 3.6 right now, so installing it alongside
python3.5 results in a test failure when it is imported.
  • Loading branch information
vilmibm authored and gvanrossum committed May 22, 2017
1 parent 13b7573 commit 2346b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flake8
flake8-bugbear; python_version >= '3.5'
flake8-pyi; python_version >= '3.5'
flake8-pyi; python_version >= '3.6'
lxml; sys_platform != 'win32' or python_version == '3.5' or python_version == '3.6'
typed-ast>=1.0.3,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
pytest>=2.8
Expand Down

0 comments on commit 2346b74

Please sign in to comment.