generated from XanaduAI/pennylane-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump the RTD file to v2 so builds pass (#76)
* bump the RTD file to v2 so builds pass * trigger ci
- Loading branch information
Showing
1 changed file
with
25 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
requirements_file: doc/requirements.txt | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
build: | ||
image: latest | ||
# Required | ||
version: 2 | ||
|
||
python: | ||
version: 3.8 | ||
# Build documentation in the doc/ directory with Sphinx | ||
sphinx: | ||
configuration: doc/conf.py | ||
|
||
# Don't build any extra formats | ||
# Build documentation with MkDocs | ||
#mkdocs: | ||
# configuration: mkdocs.yml | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: | ||
- none | ||
- htmlzip | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: doc/requirements.txt | ||
- method: pip | ||
path: . | ||
|
||
build: | ||
image: latest |