Skip to content

Commit

Permalink
Update pixi conf
Browse files Browse the repository at this point in the history
  • Loading branch information
melund committed Feb 22, 2024
1 parent 2e417a3 commit 3e04455
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ channels = ["conda-forge"]
platforms = ["win-64","linux-64"]

[tasks]
linkcheck = "sphinx-build -M linkcheck . _build"
clean = "rm -rf _build"
linkcheck = {cmd="sphinx-build -M linkcheck . _build", depends_on = ["clean"]}
build-pdf = "sphinx-build -M simplepdf . _build"
build-html = "sphinx-build -M html . _build"
build-html-all = "sphinx-build -M html . _build -a"
html = {cmd= 'explorer .\Docs\_build\html\index.html', depends_on = ["build-html-all"]}
pdf = {cmd= 'explorer .\Docs\_build\simplepdf\Agada-Documentation.pdf', depends_on = ["build-pdf"]}
html = {cmd= 'explorer .\_build\html\index.html', depends_on = ["build-html-all"]}
pdf = {cmd= 'explorer .\_build\simplepdf\Agada-Documentation.pdf', depends_on = ["build-pdf"]}
livehtml = "sphinx-autobuild . _build --port=0 --open-browser -j=4"


[dependencies]
sphinx = "<7"
sphinx = ">=6.2,<7"
python = ">=3.11.6,<3.12"
sphinxext-opengraph = ">=0.9.0,<0.10"
sphinx-copybutton = ">=0.5.2,<0.6"
Expand Down

0 comments on commit 3e04455

Please sign in to comment.