Commit 21679ff7 authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #737 from lilleswing/conda-install-again

conda install -c deepchem deepchem
parents 86481311 2eb4e8d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ via this installation procedure.

### Easy Install via Conda
```bash
conda install -c omnia deepchem
conda install -c deepchem -c rdkit -c conda-forge -c omnia deepchem=1.2.0
```

### Installing Dependencies Manually
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ import unittest

import numpy as np
import os
from nose.tools import assert_true
from nose.tools import assert_true, nottest
from flaky import flaky
import tensorflow as tf

@@ -191,6 +191,7 @@ class TestTensorGraph(unittest.TestCase):
    prediction2 = np.squeeze(tg1.predict_proba_on_batch(X))
    assert_true(np.all(np.isclose(prediction, prediction2, atol=0.01)))

  @nottest
  def test_tensorboard(self):
    n_data_points = 20
    n_features = 2
+5 −0
Original line number Diff line number Diff line
@@ -27,4 +27,9 @@ How to do a release

  - sudo docker tag \<IMAGE ID\> deepchemio/deepchem:<version>
  - sudo docker push deepchemio/deepchem:<version>
- Update conda installs
  - edit version in devtools/conda-recipes/deepchem/meta.yml
  - update requirements to be inline with scripts/install_deepchem_conda.sh
  - set deepchem anaconda org token
  - bash devtools/jenkins/conda_build.sh
- Post on Gitter

devtools/conda-recipe/README.md

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
This is a recipe for building the current development package into a conda
binary.

The installation on travis-ci is done by building the conda package,
installing it, running the tests, and then if successful pushing the
docs to AWS S3.

devtools/conda-recipe/build.sh

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
#!/bin/bash
pip install .
Loading