|
1 | 1 | # Type checkers and other linters that we test our stubs against. These should always
|
2 | 2 | # be pinned to a specific version to make failure reproducible. See also the
|
3 | 3 | # "tool.typeshed" section in pyproject.toml for additional type checkers.
|
4 |
| -black==23.7.0; python_version >= "3.8" # must match .pre-commit-config.yaml |
5 |
| -flake8==6.0.0; python_version >= "3.8" # must match .pre-commit-config.yaml |
6 |
| -flake8-bugbear==23.7.10; python_version >= "3.8" # must match .pre-commit-config.yaml |
7 |
| -flake8-noqa==1.3.2; python_version >= "3.8" # must match .pre-commit-config.yaml |
8 |
| -flake8-pyi==23.6.0; python_version >= "3.8" # must match .pre-commit-config.yaml |
9 |
| -isort==5.12.0; python_version >= "3.8" # must match .pre-commit-config.yaml |
| 4 | +black==23.9.1 # must match .pre-commit-config.yaml |
| 5 | +flake8==6.1.0 # must match .pre-commit-config.yaml |
| 6 | +flake8-bugbear==23.7.10 # must match .pre-commit-config.yaml |
| 7 | +flake8-noqa==1.3.2 # must match .pre-commit-config.yaml |
| 8 | +flake8-pyi==23.6.0 # must match .pre-commit-config.yaml |
| 9 | +isort==5.12.0 # must match .pre-commit-config.yaml |
10 | 10 | mypy==1.5.1
|
11 |
| -pre-commit-hooks==4.4.0 # must match .pre-commit-config.yaml |
12 |
| -pytype==2023.8.14; platform_system != "Windows" and python_version >= "3.8" and python_version < "3.11" |
13 |
| -ruff==0.0.280 # must match .pre-commit-config.yaml |
| 11 | +pre-commit-hooks==4.4.0 # must match .pre-commit-config.yaml |
| 12 | +pytype==2023.8.31; platform_system != "Windows" and python_version < "3.11" |
| 13 | +ruff==0.0.287 # must match .pre-commit-config.yaml |
14 | 14 |
|
15 | 15 | # Libraries used by our various scripts.
|
16 |
| -aiohttp==3.8.5; python_version < "3.12" # aiohttp can't be installed on 3.12 yet |
| 16 | +aiohttp==3.8.5; python_version < "3.12" # aiohttp can't be installed on 3.12 yet |
17 | 17 | packaging==23.1
|
18 | 18 | pathspec>=0.11.1
|
19 | 19 | pyyaml==6.0.1
|
20 | 20 | stubdefaulter==0.1.0
|
21 | 21 | termcolor>=2.3
|
22 | 22 | tomli==2.0.1
|
23 |
| -tomlkit==0.11.8 |
| 23 | +tomlkit==0.12.1 |
24 | 24 | typing_extensions
|
25 | 25 |
|
26 | 26 | # Type stubs used to type check our scripts.
|
|
0 commit comments