From 3c54ad019d1e807b4c13830ca1042a38e311125b Mon Sep 17 00:00:00 2001 From: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com> Date: Sat, 15 Aug 2020 20:02:33 -0400 Subject: [PATCH] Create .readthedocs.yml * I forgot to add it in the PR * This makes sure the requirements/local.txt requirements are added --- {{cookiecutter.project_slug}}/.readthedocs.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 {{cookiecutter.project_slug}}/.readthedocs.yml diff --git a/{{cookiecutter.project_slug}}/.readthedocs.yml b/{{cookiecutter.project_slug}}/.readthedocs.yml new file mode 100644 index 000000000..c37cc61eb --- /dev/null +++ b/{{cookiecutter.project_slug}}/.readthedocs.yml @@ -0,0 +1,13 @@ +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +formats: + - pdf + +python: + version: 3.8 + install: + - requirements: requirements/local.txt