From 026fd87e82dc2807132f3ed6f90a3889fe7c0f99 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Fri, 17 Sep 2021 07:46:48 -0400 Subject: [PATCH] Add readthedocs configuration file. The configuration in the RTD project is broken since I moved dependencies into setup.cfg. I decided to simply move it into the repository as a configuration file and call it a day. https://docs.readthedocs.io/en/stable/config-file/v2.html --- .readthedocs.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..7bb1529 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,10 @@ +version: 2 +python: + version: "3.7" + install: + - method: pip + path: . + extra_requirements: + - docs +sphinx: + configuration: docs/conf.py