diff --git a/.readthedocs.yml b/.readthedocs.yml index 6c1e5c7673..51c5b4ffc9 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,13 +3,6 @@ version: 2 sphinx: configuration: doc/conf.py -python: - install: - - requirements: doc/requirements.txt - - requirements: requirements-dev.txt - - method: pip - path: . - build: os: ubuntu-22.04 tools: @@ -18,7 +11,9 @@ build: - graphviz jobs: post_install: - - PL_BACKEND="lightning_gpu" python scripts/configure_pyproject_toml.py && SKIP_COMPILATION=True python -m build + - python -m pip install --exists-action=w --no-cache-dir -r doc/requirements.txt + - PL_BACKEND="lightning_qubit" python scripts/configure_pyproject_toml.py && SKIP_COMPILATION=True python -m build + - rm -rf ./build && PL_BACKEND="lightning_gpu" python scripts/configure_pyproject_toml.py && SKIP_COMPILATION=True python -m build - rm -rf ./build && PL_BACKEND="lightning_kokkos" python scripts/configure_pyproject_toml.py && SKIP_COMPILATION=True python -m build - rm -rf ./build && PL_BACKEND="lightning_tensor" python scripts/configure_pyproject_toml.py && SKIP_COMPILATION=True python -m build - python -m pip install ./dist/*.whl diff --git a/doc/requirements.txt b/doc/requirements.txt index 94b2a1df82..07f3a33b9c 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,3 +1,5 @@ +tomlkit +build breathe docutils==0.16 exhale>=0.3.3 diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index 9b4b442069..212f402ce0 100644 --- a/pennylane_lightning/core/_version.py +++ b/pennylane_lightning/core/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.39.0-dev14" +__version__ = "0.39.0-dev18"