Skip to content

Commit

Permalink
fix version incompat in docs building,
Browse files Browse the repository at this point in the history
closes #14
  • Loading branch information
renefritze committed Jan 24, 2024
1 parent 17ea308 commit 723946f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
cd /tmp/cookie_python/foo3
python -c "import tests"
python -m pip install .[dev]
# make -C docs html
make -C docs html
- name: upload generated projects
uses: actions/upload-artifact@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions {{cookiecutter.project_slug}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ dependencies = [ "rich", "packaging" , "typer"]

[project.optional-dependencies]
# myst current require sphinx<6
docs = ["sphinx<6",
"sphinx-autoapi<3",
"myst-nb",
"furo"]
docs = ["sphinx>=6",
"sphinx-autoapi>=3",
"myst-nb>=0.18",
"furo>=2023.9.10"]
dev = [
"black",
"mypy",
Expand Down

0 comments on commit 723946f

Please sign in to comment.