Skip to content

Commit 73c6dfe

Browse files
authored
Fix the CI (#258)
1 parent 41cf6e4 commit 73c6dfe

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repos:
4848
hooks:
4949
- id: flake8
5050
additional_dependencies:
51-
- flake8-bugbear==22.9.11
51+
- flake8-bugbear==22.9.23
5252
- flake8-comprehensions==3.10
5353
- flake8-pytest-style==1.6
5454
- flake8-spellcheck==0.28

pyproject.toml

Lines changed: 4 additions & 4 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.10", "hatch-vcs>=0.2"]
44

55
[project]
66
name = "sphinx_autodoc_typehints"
@@ -16,12 +16,12 @@ urls.Changelog = "https://github.com/tox-dev/sphinx-autodoc-typehints/blob/main/
1616
authors = [{ name = "Bernát Gábor", email = "[email protected]" }]
1717
maintainers = [{ name = "Bernát Gábor", email = "[email protected]" }]
1818
requires-python = ">=3.7"
19-
dependencies = ["Sphinx>=5.1.1"]
20-
optional-dependencies.docs = ["furo>=2022.6.21", "sphinx>=5.1.1", "sphinx-autodoc-typehints>=1.19.2"]
19+
dependencies = ["Sphinx>=5.2.1"]
20+
optional-dependencies.docs = ["furo>=2022.9.15", "sphinx>=5.2.1", "sphinx-autodoc-typehints>=1.19.2"]
2121
optional-dependencies.testing = [
2222
"covdefaults>=2.2",
2323
"coverage>=6.4.4",
24-
"diff-cover>=6.5.1",
24+
"diff-cover>=7.0.1",
2525
"nptyping>=2.3.1",
2626
"pytest>=7.1.3",
2727
"pytest-cov>=3",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ description = run type check on code base
4646
setenv =
4747
{tty:MYPY_FORCE_COLOR = 1}
4848
deps =
49-
mypy==0.971
49+
mypy==0.981
5050
types-docutils>=0.19.1
5151
commands =
5252
mypy --python-version 3.10 src
@@ -62,7 +62,7 @@ skip_install = true
6262
deps =
6363
covdefaults>=2.2
6464
coverage>=6.4.4
65-
diff-cover>=6.5.1
65+
diff-cover>=7.0.1
6666
extras =
6767
parallel_show_output = true
6868
commands =

0 commit comments

Comments
 (0)