From 0be4e2b14fe7bf9566e410ca86e32b9245c3084a Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Tue, 27 Sep 2022 16:46:05 +0400 Subject: [PATCH] Fix broken sphinx-autodoc-typehints 1.19.3. Refs: https://github.com/tox-dev/sphinx-autodoc-typehints/issues/259 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33ff4d813..472570f74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,8 @@ pytest-cov = "^3.0.0" pytest-httpserver = "^1.0.6" pytest-randomly = "^3.12.0" sphinx = "^5.2.0" -sphinx-autodoc-typehints = "^1.19.2" +# 1.19.3 is buggy: https://github.com/tox-dev/sphinx-autodoc-typehints/issues/259 +sphinx-autodoc-typehints = "^1.19.2, !=1.19.3" sphinx-copybutton = "^0.5.0" sphinx-design = "^0.3.0" sphinx-issues = "^3.0.1"