forked from aws/chalice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
31 lines (29 loc) · 852 Bytes
/
requirements-dev.txt
File metadata and controls
31 lines (29 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Dev requirements, used for various linting tools
coverage==4.5.4
flake8==3.7.9
tox==3.0.0
wheel==0.26.0
doc8==0.8.1
# The latest version of pylint only works on python3.
pylint==2.4.4 ; python_version >= '3.6'
# For python2, there are a few bugs in the latest versions of 1.x,
# so we're locking to a specific version that we know works.
pylint==1.9.3 ; python_version <= '2.7'
astroid==1.6.5 ; python_version <= '2.7'
pytest-cov==2.8.1
pydocstyle==2.0.0
# Test requirements
pytest==5.3.1 ; python_version >= '3.6'
pytest==4.6.7 ; python_version <= '2.7'
py==1.5.3
pygments==2.1.3
mock==2.0.0
requests==2.20.0
boto3==1.15.16
websocket-client==0.54.0
hypothesis==4.43.1
# pip does not catch the <0.7 requirement in pytest so we need to add it to
# the top level requirements.
pluggy==0.12
mypy==0.740; python_version >= '3.6'
mypy-extensions==0.4.3