Skip to content

Commit 63a42fc

Browse files
Add 'dev-requirements.txt' to Pip Requirements (#7681)
* Add 'dev-requirements.txt' to Pip Requirements * Add sample `dev-requirements.txt` Add sample `dev-requirements.txt` from repo `gevent/gevent` (MIT License)
1 parent 51c6474 commit 63a42fc

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

lib/linguist/languages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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]

0 commit comments

Comments
 (0)