From 6e3e8530a16c607fe2eb13656af29d7d3d83ed90 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 30 Sep 2021 08:02:03 -0600 Subject: [PATCH] readthedocs: add configuration file --- .gitignore | 1 + .readthedocs.yaml | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.gitignore b/.gitignore index 56203f4e0acb..2f3f09a8747d 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,4 @@ test.sh !/suricata-update/Makefile.am /libsuricata-config !/libsuricata-config.in +!/.readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000000..bc23deb5f082 --- /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: []