Unverified Commit 27a8ef17 authored by Daiki Nishikawa's avatar Daiki Nishikawa Committed by GitHub
Browse files

Merge pull request #2257 from nd-02110114/fix-docs-build

Improve documents
parents d79c5ea4 4f26c4a0
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -101,3 +101,4 @@ datasets/pdbbind_v2019_refined.tar.gz
datasets/qm8.csv

.vscode/
.python-version
+1 −5
Original line number Diff line number Diff line
@@ -7,11 +7,7 @@ version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

# Build documentation with MkDocs
# mkdocs:
#   configuration: mkdocs.yml
  configuration: docs/source/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
formats: all
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ script:
  - if [[ "$CHECK_ONLY_DOCS" == "true" ]]; then
      cd docs && pip install -r requirements.txt;
      make clean html;
      make doctest_tutorials;
      make doctest_examples;
      travis_terminate $?;
    fi
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ materials science, quantum chemistry, and biology.

## Requirements

DeepChem currently supports Python 3.5 through 3.7 and requires these packages on any condition.
DeepChem currently supports Python 3.6 through 3.7 and requires these packages on any condition.

- [joblib](https://pypi.python.org/pypi/joblib)
- [NumPy](https://numpy.org/)
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ class SklearnModel(Model):
  perhaps you want to use the hyperparameter tuning capabilities in
  `dc.hyper`. The `SklearnModel` class provides a wrapper around scikit-learn
  models that allows scikit-learn models to be trained on `Dataset` objects
  and evaluated with the same metrics as other DeepChem models.`
  and evaluated with the same metrics as other DeepChem models.

  Notes
  -----
Loading