Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ jobs:

- name: Install docs requirements and project
run: |
pip install -r docs/requirements.txt
pip install -e .
pip install -e .[docs]

- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:

- name: Install docs requirements and project
run: |
pip install -r docs/requirements.txt
pip install -e .
pip install -e .[docs]

- name: Build documentation
run: |
Expand Down
15 changes: 0 additions & 15 deletions docs/requirements.txt

This file was deleted.

17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@ dev = [
"pre-commit",
"hypothesis"
]
docs = [
"docutils==0.18.1,<0.21",
"linkify-it-py",
"myst-parser",
"pillow",
"pytorch_sphinx_theme2==0.2.0",
"sphinx==7.2.6",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"sphinx-design==0.6.1",
"sphinx-gallery==0.14.0",
"sphinx-sitemap==2.7.1",
"sphinxcontrib-mermaid==1.0.0",
"sphinxcontrib.katex==0.9.10",
"sphinxext-opengraph",
"torch"
]

[project.urls]
Homepage = "https://github.com/pytorch/helion"
Expand Down
Loading