Skip to content

Commit bd799c6

Browse files
authored
Merge pull request #115 from bckohan/v2.x.x
try fix docutils dependency for CI
2 parents c14e534 + f1c7904 commit bd799c6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,15 @@ typing-extensions = { version = ">=3.7.4.3", markers = "python_version < '3.10'"
6565
ipdb = ">=0.13.13"
6666
pytest-django = ">=4.8.0"
6767
pytest-cov = ">=5.0.0"
68-
Sphinx = ">=7.0"
68+
Sphinx = [
69+
{ version = ">=8.0", markers = "python_version >= '3.10'" },
70+
{ version = ">=7.4", markers = "python_version >= '3.9'" },
71+
{ version = ">=7.0", markers = "python_version < '3.9'" }
72+
]
73+
docutils = [
74+
{ version = ">=0.21", markers = "python_version >= '3.9'" },
75+
{ version = ">=0.20", markers = "python_version < '3.9'" }
76+
]
6977
mypy = ">=1.0"
7078
doc8 = ">=1.1.1"
7179
aiohttp = ">=3.9.1"

0 commit comments

Comments
 (0)