From 7c1a819bb40f3f0b0c6f392fbb14612bd4656efd Mon Sep 17 00:00:00 2001 From: Songyang Zhang Date: Fri, 8 Mar 2024 18:10:05 +0800 Subject: [PATCH] [Fix] Chinese version of ReadTheDoc (#947) * [Fix] Chinese version of ReadTheDoc * rename --------- Co-authored-by: Leymore --- .readthedocs.yml => docs/en/.readthedocs.yaml | 3 +++ docs/zh_cn/.readthedocs.yaml | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) rename .readthedocs.yml => docs/en/.readthedocs.yaml (83%) create mode 100644 docs/zh_cn/.readthedocs.yaml diff --git a/.readthedocs.yml b/docs/en/.readthedocs.yaml similarity index 83% rename from .readthedocs.yml rename to docs/en/.readthedocs.yaml index 0d5c1838..c6cf8e2a 100644 --- a/.readthedocs.yml +++ b/docs/en/.readthedocs.yaml @@ -9,6 +9,9 @@ build: formats: - epub +sphinx: + configuration: docs/en/conf.py + python: install: - requirements: requirements/docs.txt diff --git a/docs/zh_cn/.readthedocs.yaml b/docs/zh_cn/.readthedocs.yaml new file mode 100644 index 00000000..fc67bcee --- /dev/null +++ b/docs/zh_cn/.readthedocs.yaml @@ -0,0 +1,17 @@ +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.8" + +formats: + - epub + +sphinx: + configuration: docs/zh_cn/conf.py + +python: + install: + - requirements: requirements/docs.txt