forked from Nuitka/Nuitka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements-devel.txt
35 lines (27 loc) · 1.09 KB
/
requirements-devel.txt
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
32
33
34
35
# PyLint wouldn't be installable on 2.6 and not work with too old Python3
pylint == 1.9.5 ; python_version == '2.7'
pylint == 2.6.0 ; python_version >= '3.6'
astroid == 2.4.2 ; python_version >= '3.6'
# linting rest code snippets
restructuredtext-lint==1.3.0 ; python_version == '2.7' or python_version >= '3.6'
Pygments == 2.6.1 ; python_version >= '3.6'
rstcheck == 3.3.1 ; python_version == '2.7' or python_version >= '3.6'
# Autoformat needs
black == 20.8b1 ; python_version >= '3.6'
toml >= 0.10.1 ; python_version >= '3.6'
isort == 5.4.2 ; python_version >= '3.6'
redbaron == 0.9.2 ; python_version >= '2.7'
baron == 0.9 ; python_version >= '2.7'
# API doc, doxygen helper for Python
doxypypy == 0.8.8.6 ; python_version >= '2.7'
# Code and test generation tools
Jinja2 == 2.10.1 ; python_version >= '2.7'
# Codespell can be used as well, no need to fix version
codespell ; python_version >= '2.7'
# Distutils test, packaging test for PyPI, fixed for Python2 breakage
# of newer virtualenv.
virtualenv == 16.7.10; python_version == '2.7'
virtualenv ; python_version >= '3.6'
pytest
# Packaging
wheel