trying to fix rtd

This commit is contained in:
samsledje
2022-04-29 10:30:58 -04:00
parent ceca25a2c2
commit 03781b3701
3 changed files with 10 additions and 8 deletions

View File

@@ -9,8 +9,10 @@ python:
version: 3.7
install:
- requirements: docs/requirements.txt
- method: pip
- method: setuptools
path: .
extra_requirements:
- docs
# Build documentation in the docs/ directory with Sphinx
sphinx:

View File

@@ -1,9 +1,9 @@
h5py
matplotlib==3.1.3
matplotlib
numpy
pandas
scikit-learn==0.22.2.post1
scipy==1.4.1
scikit-learn
scipy
seaborn
Sphinx==3.3.1
sphinx-rtd-theme==0.5.0
@@ -13,5 +13,5 @@ sphinxcontrib-htmlhelp==1.0.3
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.4
torch==1.2.0
tqdm==4.42.1
torch==1.5.0
tqdm

View File

@@ -14,7 +14,8 @@ import os.path
import sys
import dscript
sys.path[:0] = [os.path.dirname(os.path.abspath(__file__)) + "/../../"]
sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath("../"))
# -- Project information -----------------------------------------------------
@@ -25,7 +26,6 @@ author = "Samuel Sledzieski, Rohit Singh"
# The full version, including alpha/beta/rc tags
release = "v2.0"
master_doc = "index"