From 134bcc9d96ad6977368a7da1bc355e041577635c Mon Sep 17 00:00:00 2001 From: Intron7 Date: Mon, 16 Dec 2024 15:24:48 +0100 Subject: [PATCH] test --- .readthedocs.yml | 6 ++---- hatch.toml | 5 +++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 668b1931..30b5452f 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -12,11 +12,9 @@ build: - asdf install uv latest - asdf global uv latest - # Use uv to synchronize dependencies - - uv pip install --system .[doc] + - uv sync --extra doc + - uv run -m sphinx -T -b html -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT/html - # Build documentation using sphinx - - python -m sphinx -T -b html -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT/html sphinx: configuration: docs/conf.py diff --git a/hatch.toml b/hatch.toml index 7d11867b..46538fe6 100644 --- a/hatch.toml +++ b/hatch.toml @@ -9,3 +9,8 @@ features = ["test", "rapids12"] features = ["doc"] scripts.build = "sphinx-build -M html docs docs/_build {args}" scripts.clean = "git clean -fXd docs" + +[envs.hatch-test.pip] +extra_index_urls = [ + "https://pypi.nvidia.com" +]