File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 rev : v4.4.0 # must match requirements-tests.txt
44 hooks :
55 - id : trailing-whitespace
6- - id : requirements-txt-fixer
76 - id : end-of-file-fixer
87 - id : check-yaml
98 - id : check-toml
Original file line number Diff line number Diff line change 1- aiohttp==3.8.4; python_version < "3.12" # aiohttp can't be installed on 3.12 yet
1+ # Type checkers and other linters that we test our stubs against. These should always
2+ # be pinned to a specific version to make failure reproducible. See also the
3+ # "tool.typeshed" section in pyproject.toml for additional type checkers.
24black==23.3.0 # must match .pre-commit-config.yaml
35flake8==6.0.0; python_version >= "3.8" # must match .pre-commit-config.yaml
46flake8-bugbear==23.5.9; python_version >= "3.8" # must match .pre-commit-config.yaml
57flake8-noqa==1.3.1; python_version >= "3.8" # must match .pre-commit-config.yaml
68flake8-pyi==23.5.0; python_version >= "3.8" # must match .pre-commit-config.yaml
79isort==5.12.0; python_version >= "3.8" # must match .pre-commit-config.yaml
810mypy==1.3.0
9- packaging==23.1
10- pathspec>=0.11.1
1111pre-commit-hooks==4.4.0 # must match .pre-commit-config.yaml
1212pycln==2.1.5 # must match .pre-commit-config.yaml
1313pytype==2023.6.2; platform_system != "Windows" and python_version < "3.11"
14+
15+ # Libraries used by our various scripts.
16+ aiohttp==3.8.4; python_version < "3.12" # aiohttp can't be installed on 3.12 yet
17+ packaging==23.1
18+ pathspec>=0.11.1
1419pyyaml==6.0
1520stubdefaulter==0.1.0
1621termcolor>=2.3
1722tomli==2.0.1
1823tomlkit==0.11.8
24+ typing-extensions
25+
26+ # Type stubs used to type check our scripts.
1927types-pyyaml>=6.0.12.7
2028types-setuptools>=67.5.0.0
21- typing-extensions
You can’t perform that action at this time.
0 commit comments