Skip to content

Commit 6aae5ae

Browse files
committed
Bump tools
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 33ade28 commit 6aae5ae

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repos:
3232
rev: v1.12.1
3333
hooks:
3434
- id: blacken-docs
35-
additional_dependencies: [black==22.8]
35+
additional_dependencies: [black==22.10]
3636
- repo: https://github.com/pre-commit/pygrep-hooks
3737
rev: v1.9.0
3838
hooks:
@@ -47,11 +47,11 @@ repos:
4747
hooks:
4848
- id: flake8
4949
additional_dependencies:
50-
- flake8-bugbear==22.9.11
51-
- flake8-comprehensions==3.10
50+
- flake8-bugbear==22.10.27
51+
- flake8-comprehensions==3.10.1
5252
- flake8-pytest-style==1.6
5353
- flake8-spellcheck==0.28
54-
- flake8-unused-arguments==0.0.11
54+
- flake8-unused-arguments==0.0.12
5555
- flake8-noqa==1.2.9
5656
- pep8-naming==0.13.2
5757
- repo: https://github.com/pre-commit/mirrors-prettier

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
build-backend = "hatchling.build"
3-
requires = ["hatchling>=1.9", "hatch-vcs>=0.2"]
3+
requires = ["hatchling>=1.11.1", "hatch-vcs>=0.2"]
44

55
[project]
66
name = "pyproject_api"
@@ -21,16 +21,16 @@ dependencies = [
2121
"packaging>=21.3", 'tomli>=2.0.1; python_version < "3.11"',
2222
]
2323
optional-dependencies.docs = [
24-
"furo>=2022.6.21",
25-
"sphinx>=5.1.1",
26-
"sphinx-autodoc-typehints>=1.19.2",
24+
"furo>=2022.9.29",
25+
"sphinx>=5.3",
26+
"sphinx-autodoc-typehints>=1.19.4",
2727
]
2828
optional-dependencies.testing = [
2929
"covdefaults>=2.2",
30-
"pytest>=7.1.3",
31-
"pytest-cov>=3",
32-
"pytest-mock>=3.8.2",
33-
'importlib-metadata>=4.12; python_version < "3.8"',
30+
"pytest>=7.2",
31+
"pytest-cov>=4",
32+
"pytest-mock>=3.10",
33+
'importlib-metadata>=5; python_version < "3.8"',
3434
"wheel>=0.37.1",
3535
]
3636
dynamic = ["version"]
@@ -83,6 +83,6 @@ profile = "black"
8383
line_length = 120
8484

8585
[tool.mypy]
86-
python_version = "3.10"
86+
python_version = "3.11"
8787
show_error_codes = true
8888
strict = true

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ description = run type check on code base
4848
setenv =
4949
{tty:MYPY_FORCE_COLOR = 1}
5050
deps =
51-
mypy==0.971
51+
mypy==0.982
5252
commands =
5353
mypy src/pyproject_api --strict
5454
mypy tests --strict
@@ -65,8 +65,8 @@ commands =
6565
description = check that the long description is valid
6666
skip_install = true
6767
deps =
68-
build[virtualenv]>=0.8
69-
check-wheel-contents>=0.3.4
68+
build[virtualenv]>=0.9
69+
check-wheel-contents>=0.4
7070
twine>=4.0.1
7171
commands =
7272
python -m build -o {envtmpdir} -s -w .

0 commit comments

Comments
 (0)