-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathdevelop-requirements.txt
More file actions
27 lines (23 loc) · 887 Bytes
/
develop-requirements.txt
File metadata and controls
27 lines (23 loc) · 887 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
# Testing
pytest==7.4.4; python_version < "3.10"
pytest==9.0.2; python_version >= "3.10"
pytest-cov==4.1.0; python_version < "3.10"
pytest-cov==7.0.0; python_version >= "3.10"
# Type checking
# Using mypy 0.930 for all versions to avoid no_implicit_optional incompatibility
# Upgrade to mypy 1.x requires code changes for explicit Optional types
mypy==0.930
# Linting
pylint==2.12.2; python_version < "3.10"
pylint==4.0.4; python_version >= "3.10"
# Code formatting
autoflake==1.7.8; python_version < "3.10"
autoflake==2.3.1; python_version >= "3.10"
autopep8==1.6.0; python_version < "3.10"
autopep8==2.3.2; python_version >= "3.10"
isort==5.11.5; python_version < "3.10"
isort==7.0.0; python_version >= "3.10"
# Distribution (Python 3.10+ only, per build policy)
wheel==0.45.1; python_version >= "3.10"
twine==6.2.0; python_version >= "3.10"
build==1.3.0; python_version >= "3.10"