Commit a62e8de9 authored by nd-02110114's avatar nd-02110114
Browse files

📝 fix docs

parent c50430c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ jobs:
    - name: Build DeepChem
      run: |
        python -m pip install --upgrade pip
        pip install tensorflow==2.3.0
        pip install tensorflow'>=2.3,<2.4'
        pip install -e .
    - name: Import checking
      run: python -c "import deepchem"
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ jobs:
    - name: Build DeepChem
      run: |
        python -m pip install --upgrade pip
        pip install tensorflow==2.3.0
        pip install tensorflow'>=2.3,<2.4'
        pip install -e .
    - name: Import checking
      run: python -c "import deepchem"
+1 −5
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ DeepChem currently supports Python 3.6 through 3.7 and requires these packages o
### Soft Requirements

DeepChem has a number of "soft" requirements.  
If you face some errors like `ImportError: No module named XXXX`, you may need to install some packages.
If you face some errors like `ImportError: This class requires XXXX`, you may need to install some packages.

Please check [the document](https://deepchem.readthedocs.io/en/latest/requirements.html##soft-requirements) about soft requirements.

@@ -140,7 +140,3 @@ To cite this book, please use this bibtex entry:
    year={2019}
}
```

## Version

2.4.0-rc
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ Imports all submodules
"""

# If you push the tag, please remove `.dev`
__version__ = '2.4.0-rc1.dev'
__version__ = '2.4.0.dev'

import deepchem.data
import deepchem.feat
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ class MolGraphConvFeaturizer(MolecularFeaturizer):
          from rdkit.Chem import AllChem
          AllChem.ComputeGasteigerCharges(mol)
        except ModuleNotFoundError:
          raise ImportError("This method requires RDKit to be installed.")
          raise ImportError("This class requires RDKit to be installed.")

    # construct atom (node) feature
    h_bond_infos = construct_hydrogen_bonding_info(mol)
Loading