Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the CI #258

Merged
merged 1 commit into from Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -48,7 +48,7 @@ repos:
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==22.9.11
- flake8-bugbear==22.9.23
- flake8-comprehensions==3.10
- flake8-pytest-style==1.6
- flake8-spellcheck==0.28
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.9", "hatch-vcs>=0.2"]
requires = ["hatchling>=1.10", "hatch-vcs>=0.2"]

[project]
name = "sphinx_autodoc_typehints"
Expand All @@ -16,12 +16,12 @@ urls.Changelog = "https://github.com/tox-dev/sphinx-autodoc-typehints/blob/main/
authors = [{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" }]
maintainers = [{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" }]
requires-python = ">=3.7"
dependencies = ["Sphinx>=5.1.1"]
optional-dependencies.docs = ["furo>=2022.6.21", "sphinx>=5.1.1", "sphinx-autodoc-typehints>=1.19.2"]
dependencies = ["Sphinx>=5.2.1"]
optional-dependencies.docs = ["furo>=2022.9.15", "sphinx>=5.2.1", "sphinx-autodoc-typehints>=1.19.2"]
optional-dependencies.testing = [
"covdefaults>=2.2",
"coverage>=6.4.4",
"diff-cover>=6.5.1",
"diff-cover>=7.0.1",
"nptyping>=2.3.1",
"pytest>=7.1.3",
"pytest-cov>=3",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -46,7 +46,7 @@ description = run type check on code base
setenv =
{tty:MYPY_FORCE_COLOR = 1}
deps =
mypy==0.971
mypy==0.981
types-docutils>=0.19.1
commands =
mypy --python-version 3.10 src
Expand All @@ -62,7 +62,7 @@ skip_install = true
deps =
covdefaults>=2.2
coverage>=6.4.4
diff-cover>=6.5.1
diff-cover>=7.0.1
extras =
parallel_show_output = true
commands =
Expand Down