Skip to content

Commit

Permalink
Fixing docs-check builds by limiting pkg version
Browse files Browse the repository at this point in the history
sphinx-markdown-builder released on 6/23, breaking the docs
build. We won't install the new version now, working around the
failure.
  • Loading branch information
jayofdoom committed Jun 28, 2023
1 parent ebd875a commit 92fb724
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ authors = [{ name = "G-Research Open Source Software", email = "armada@armadapro

[project.optional-dependencies]
format = ["black==23.3.0", "flake8==6.0.0", "pylint==2.17.4"]
docs = ["sphinx", "sphinx-jekyll-builder", "sphinx-toolbox==3.2.0b1"]
# note(JayF): sphinx-jekyll-builder was broken by sphinx-markdown-builder 0.6 -- so exclude it
docs = ["sphinx", "sphinx-jekyll-builder", "sphinx-toolbox==3.2.0b1", "sphinx-markdown-builder<0.6"]
test = ["pytest==7.3.1", "coverage>=6.5.0", "pytest-asyncio==0.21.0"]

[build-system]
Expand Down
3 changes: 2 additions & 1 deletion third_party/airflow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ readme = "README.md"
[project.optional-dependencies]
format = ["black==23.3.0", "flake8==6.0.0", "pylint==2.17.4"]
test = ["pytest==7.3.1", "coverage>=6.5.0", "pytest-asyncio==0.21.0"]
docs = ["sphinx", "sphinx-jekyll-builder"]
# note(JayF): sphinx-jekyll-builder was broken by sphinx-markdown-builder 0.6 -- so exclude it
docs = ["sphinx", "sphinx-jekyll-builder", "sphinx-markdown-builder<0.6"]

[build-system]
requires = ["setuptools"]
Expand Down

0 comments on commit 92fb724

Please sign in to comment.