Commit 34fa116e authored by nd-02110114's avatar nd-02110114
Browse files

🐛 fix small bug

parent 823e1bfe
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -17,8 +17,14 @@ $ make clean html
$ open build/html/index.html
```

If you want to confirm logs in more details
If you want to confirm logs in more details,

```
$ make clean html SPHINXOPTS=-vvv
```

If you want to confirm the example tests,

```
$ make doctest_examples
```
 No newline at end of file
+1 −2
Original line number Diff line number Diff line
--find-links https://download.pytorch.org/whl/torch_stable.html
pandas
scikit-learn
sphinx_rtd_theme
tensorflow==2.3.0
transformers
torch==1.6.0+cpu
torch==1.6.0
+0 −13
Original line number Diff line number Diff line
@@ -129,16 +129,3 @@ def linkcode_resolve(domain, info):

  tag = 'master' if 'dev' in release else ('v' + release)
  return "https://github.com/deepchem/deepchem/blob/%s/%s" % (tag, filename)


# Document __init__ methods
def setup(app):

  def skip(app, what, name, obj, skip, options):
    members = [
        '__init__',
        '__call__',
    ]
    return False if name in members else skip

  app.connect('autodoc-skip-member', skip)