diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 0e8609cf..b37bc5ce 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,4 +1,5 @@ # This is file is used to help customize PyPOTS documentation building process on ReadTheDocs. +# https://docs.readthedocs.io/en/stable/build-customization.html version: 2 @@ -18,6 +19,12 @@ build: python: "3.10" jobs: + post-checkout: + - git clone https://github.com/WenjieDu/TSDB TSDB_repo --depth 1 + - mv TSDB_repo/tsdb .&& rm -rf TSDB_repo + - git clone https://github.com/WenjieDu/PyGrinder PyGrinder_repo --depth 1 + - mv PyGrinder_repo/pygrinder .&& rm -rf PyGrinder_repo + pre_install: - python -m pip install --upgrade pip - pip install torch==1.13.1 -f https://download.pytorch.org/whl/cpu diff --git a/docs/index.rst b/docs/index.rst index 6fd84157..502d61cc 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -254,6 +254,8 @@ PyPOTS community is open, transparent, and surely friendly. Let's work together model_api pypots + tsdb + pygrinder .. toctree:: :maxdepth: 2 diff --git a/docs/pygrinder.rst b/docs/pygrinder.rst new file mode 100644 index 00000000..7be7f85b --- /dev/null +++ b/docs/pygrinder.rst @@ -0,0 +1,11 @@ +All APIs of PyGrinder +======================= + +PyGrinder +--------- + +.. automodule:: pygrinder + :members: + :undoc-members: + :show-inheritance: + :inherited-members: diff --git a/docs/tsdb.rst b/docs/tsdb.rst new file mode 100644 index 00000000..70c50e22 --- /dev/null +++ b/docs/tsdb.rst @@ -0,0 +1,11 @@ +All APIs of TSDB +======================= + +TSDB +---- + +.. automodule:: tsdb + :members: + :undoc-members: + :show-inheritance: + :inherited-members: