File tree Expand file tree Collapse file tree
samples/Pip Requirements/filenames Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5731,6 +5731,7 @@ Pip Requirements:
57315731 type : data
57325732 color : " #FFD343"
57335733 filenames :
5734+ - dev-requirements.txt
57345735 - requirements-dev.txt
57355736 - requirements.lock.txt
57365737 - requirements.txt
Original file line number Diff line number Diff line change 1+ # Sample based on https://github.com/gevent/gevent/blob/master/dev-requirements.txt
2+ # Licensed under MIT License
3+
4+ # For viewing README.rst (restview --long-description),
5+ # CONTRIBUTING.rst, etc.
6+ # https://github.com/mgedmin/restview
7+ restview
8+
9+ pylint >= 1.8.0 ; python_version < "3.4"
10+ # pylint 2 needs astroid 2; unfortunately, it uses `typed_ast`
11+ # which has a C extension that doesn't build on PyPy
12+ pylint >= 2.5.0 ; python_version >= "3.4" and platform_python_implementation == "CPython"
13+ astroid >= 2.4.0 ; python_version >= "3.4" and platform_python_implementation == "CPython"
14+
15+ # backport of faulthandler
16+ faulthandler ; python_version == "2.7" and platform_python_implementation == "CPython"
17+
18+ # For generating CHANGES.rst
19+ towncrier
20+ # For making releases
21+ zest.releaser [recommended ]
22+
23+ # benchmarks use this
24+ pyperf >= 1.6.1
25+
26+ greenlet >= 1.0
27+
28+ -e .[test,docs ]
You can’t perform that action at this time.
0 commit comments