Skip to content

Commit 47705ca

Browse files
committed
Bump tools and deps
Signed-off-by: Bernát Gábor <[email protected]>
1 parent f879cf3 commit 47705ca

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.pre-commit-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
rev: v1.12.1
3030
hooks:
3131
- id: blacken-docs
32-
additional_dependencies: [ black==22.6 ]
32+
additional_dependencies: [ black==22.10 ]
3333
- repo: https://github.com/pre-commit/pygrep-hooks
3434
rev: v1.9.0
3535
hooks:
@@ -44,10 +44,10 @@ repos:
4444
hooks:
4545
- id: flake8
4646
additional_dependencies:
47-
- flake8-bugbear==22.7.1
48-
- flake8-comprehensions==3.10
47+
- flake8-bugbear==22.10.27
48+
- flake8-comprehensions==3.10.1
4949
- flake8-pytest-style==1.6
5050
- flake8-spellcheck==0.28
51-
- flake8-unused-arguments==0.0.11
52-
- flake8-noqa==1.2.8
53-
- pep8-naming==0.13.1
51+
- flake8-unused-arguments==0.0.12
52+
- flake8-noqa==1.2.9
53+
- pep8-naming==0.13.2

pyproject.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
build-backend = "hatchling.build"
3-
requires = ["hatchling>=1.6", "hatch-vcs>=0.2"]
3+
requires = ["hatchling>=1.11.1", "hatch-vcs>=0.2"]
44

55
[project]
66
name = "platformdirs"
@@ -20,15 +20,15 @@ urls.Tracker = "https://github.com/platformdirs/platformdirs/issues"
2020
requires-python = ">=3.7"
2121
optional-dependencies.test = [
2222
"appdirs==1.4.4",
23-
"pytest>=7.1.2",
24-
"pytest-cov>=3",
25-
"pytest-mock>=3.8.2",
23+
"pytest>=7.2",
24+
"pytest-cov>=4",
25+
"pytest-mock>=3.10",
2626
]
2727
optional-dependencies.docs = [
28-
"furo>=2022.6.21",
28+
"furo>=2022.9.29",
2929
"proselint>=0.13",
30-
"sphinx>=5.1.1",
31-
"sphinx-autodoc-typehints>=1.19.1",
30+
"sphinx>=5.3",
31+
"sphinx-autodoc-typehints>=1.19.4",
3232
]
3333
keywords = ["application", "cache", "directory", "log", "user"]
3434
classifiers = [

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ description = run type check on code base
5151
setenv =
5252
{tty:MYPY_FORCE_COLOR = 1}
5353
deps =
54-
mypy==0.971
54+
mypy==0.982
5555
commands =
5656
mypy --strict src
5757
mypy --strict tests
@@ -65,8 +65,8 @@ setenv =
6565
skip_install = true
6666
deps =
6767
covdefaults>=2.2
68-
coverage>=6.4.2
69-
diff-cover>=6.5.1
68+
coverage>=6.5
69+
diff-cover>=7.0.1
7070
extras =
7171
parallel_show_output = true
7272
commands =
@@ -89,7 +89,7 @@ passenv =
8989
*
9090
skip_install = true
9191
deps =
92-
build[virtualenv]>=0.8
92+
build[virtualenv]>=0.9
9393
twine>=4.0.1
9494
changedir = {toxinidir}
9595
commands =

0 commit comments

Comments
 (0)