From 18d18105f0a60b807dafa2b665dd5277425f3320 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Wed, 20 Jul 2022 13:07:49 -0600 Subject: [PATCH] readthedocs: add configuration file Readthedocs is attempting to use our /requirements.txt file as a Python requirements file, which it is not. Add a Readthedocs configuration file to tell it to not use any requirements file. --- .readthedocs.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..bc23deb5f0 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,9 @@ +# Required by Read The Docs +version: 2 + +python: + version: "3.8" + + # Use an empty install section to avoid RTD from picking up a non-python + # requirements.txt file. + install: [] -- 2.47.2