Unverified Commit 341cdf9a authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #2437 from deepchem/release

DeepChem 2.5.0 Release PR
parents c68f7bab bc7c81f6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -52,10 +52,10 @@ Please check [the document](https://deepchem.readthedocs.io/en/latest/requiremen

### Stable version

Please install tensorflow v2.3.* before installing deepchem.
Please install tensorflow ~2.4 before installing deepchem.

```bash
pip install tensorflow==2.3.*
pip install tensorflow~=2.4
```

Then, you install deepchem via pip or conda.  
@@ -80,7 +80,7 @@ conda install -y -c conda-forge rdkit
The nightly version is built by the HEAD of DeepChem.

```bash
pip install tensorflow==2.3.*
pip install tensorflow~=2.4
pip install --pre deepchem
```

+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.5.0.dev'
__version__ = '2.5.0'

import deepchem.data
import deepchem.feat
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ RUN conda update -n base conda && \
    conda create -y --name deepchem python=3.6 && \
    . /miniconda/etc/profile.d/conda.sh && \
    conda activate deepchem && \
    pip install tensorflow==2.3.* deepchem && \
    pip install tensorflow~=2.4 deepchem && \
    conda install -c conda-forge rdkit && \
    conda clean -afy && \
    rm -rf ~/.cache/pip
+3 −3
Original line number Diff line number Diff line
@@ -4,11 +4,11 @@ Installation
Stable version
--------------

Please install tensorflow v2.3.* before installing deepchem.
Please install tensorflow ~2.4 before installing deepchem.

.. code-block:: bash

    pip install tensorflow==2.3.*
    pip install tensorflow~=2.4

Then, you install deepchem via pip or conda.  

@@ -37,7 +37,7 @@ The nightly version is built by the HEAD of DeepChem.

.. code-block:: bash

    pip install tensorflow==2.3.*
    pip install tensorflow~=2.4
    pip install --pre deepchem


+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ RDKit is a soft requirement package, but many useful methods depend on it.

.. code-block:: bash

    pip install tensorflow==2.3.*
    pip install tensorflow~=2.4
    pip install --pre deepchem
    conda install -y -c conda-forge rdkit

Loading