From 5960784918284e3862cf8d6139c9925c3fc5148b Mon Sep 17 00:00:00 2001 From: Ian Hunt-Isaak Date: Fri, 12 Jan 2024 15:12:06 -0500 Subject: [PATCH] fix rtd config --- .readthedocs.yaml | 17 +++++++++++++++++ readthedocs.yml | 12 ------------ 2 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 .readthedocs.yaml delete mode 100644 readthedocs.yml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..91c94c2 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,17 @@ +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +python: + install: + - method: pip + path: . + extra_requirements: + - doc + +sphinx: + configuration: docs/conf.py \ No newline at end of file diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index 4079af7..0000000 --- a/readthedocs.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: 2 -python: - version: 3.8 - install: - - method: pip - path: . - extra_requirements: - - doc - -# Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/conf.py