Skip to content

Commit

Permalink
Fixing descriptastorus PyPi issue and moving to version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Jul 25, 2020
1 parent 4c8a77e commit 71e5e86
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ install:
- conda activate chemprop
- conda install -c conda-forge rdkit
- conda install pytest
- pip install git+https://github.com/bp-kelley/descriptastorus
- pip install -e .
script:
- pytest
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ Then proceed to either option below to complete the installation. Note that on m
1. `conda create -n chemprop python=3.8`
2. `conda activate chemprop`
3. `conda install -c conda-forge rdkit`
4. `pip install chemprop`
4. `pip install git+https://github.com/bp-kelley/descriptastorus`
5. `pip install chemprop`

### Option 2: Installing from source

Expand Down
2 changes: 1 addition & 1 deletion chemprop/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__all__ = ['__version__']

# major, minor, patch
version_info = 1, 0, 1
version_info = 1, 0, 2

# Nice string for the version
__version__ = '.'.join(map(str, version_info))
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam'

# The full version, including alpha/beta/rc tags
release = '1.0.1'
release = '1.0.2'


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ Option 1: Installing from PyPi
1. :code:`conda create -n chemprop python=3.8`
2. :code:`conda activate chemprop`
3. :code:`conda install -c conda-forge rdkit`
4. :code:`pip install chemprop`
4. :code:`pip install git+https://github.com/bp-kelley/descriptastorus`
5. :code:`pip install chemprop`

Option 2: Installing from source
--------------------------------
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
]
},
install_requires=[
'descriptastorus@git+https://github.com/bp-kelley/descriptastorus@master',
'flask>=1.1.2',
'hyperopt>=0.2.3',
'matplotlib>=3.1.3',
Expand Down

0 comments on commit 71e5e86

Please sign in to comment.