]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
readthedocs: add configuration file 7634/head
authorJason Ish <jason.ish@oisf.net>
Wed, 20 Jul 2022 19:07:49 +0000 (13:07 -0600)
committerJason Ish <jason.ish@oisf.net>
Wed, 20 Jul 2022 19:13:14 +0000 (13:13 -0600)
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 [new file with mode: 0644]

diff --git a/.readthedocs.yaml b/.readthedocs.yaml
new file mode 100644 (file)
index 0000000..bc23deb
--- /dev/null
@@ -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: []