From: Jason Ish Date: Wed, 20 Jul 2022 19:07:49 +0000 (-0600) Subject: readthedocs: add configuration file X-Git-Tag: suricata-6.0.7~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7634%2Fhead;p=thirdparty%2Fsuricata.git 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. --- 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: []