Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-galataud committed Apr 16, 2024
1 parent 963e316 commit 3a5a708
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
- name: Build docs
run: |
sphinx-build --version
python --version
cd doc
make html
Expand Down
5 changes: 5 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
"torch",
]

suppress_warnings = [
"ref.citation",
"parallel.write",
]

templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

Expand Down
21 changes: 21 additions & 0 deletions doc/source/overview/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,24 @@ What's in the box?

Installation
------------

Supported Python versions: 3.10+

*From PyPI*

.. code-block:: bash
:linenos:
pip install hopes
*From source (development version)*

.. code-block:: bash
:linenos:
git clone https://github.com/airboxlab/hopes.git
cd hopes
# using poetry
poetry install
# using pip
pip install -r requirements.txt

0 comments on commit 3a5a708

Please sign in to comment.