Skip to content

Commit

Permalink
try fix docutils dependency for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Sep 9, 2024
1 parent eb69225 commit f1c7904
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,15 @@ typing-extensions = { version = ">=3.7.4.3", markers = "python_version < '3.10'"
ipdb = ">=0.13.13"
pytest-django = ">=4.8.0"
pytest-cov = ">=5.0.0"
Sphinx = ">=7.0"
Sphinx = [
{ version = ">=8.0", markers = "python_version >= '3.10'" },
{ version = ">=7.4", markers = "python_version >= '3.9'" },
{ version = ">=7.0", markers = "python_version < '3.9'" }
]
docutils = [
{ version = ">=0.21", markers = "python_version >= '3.9'" },
{ version = ">=0.20", markers = "python_version < '3.9'" }
]
mypy = ">=1.0"
doc8 = ">=1.1.1"
aiohttp = ">=3.9.1"
Expand Down

0 comments on commit f1c7904

Please sign in to comment.