Skip to content

Commit

Permalink
Releasing version 1.0.0 and pushing to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Jul 25, 2020
1 parent 90e471d commit 2f15e7c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ Then proceed to either option below to complete the installation. Note that on m

### Option 1: Installing from PyPi

**Coming soon**

1. `conda env create -n chemprop python=3.7`
2. `conda activate chemprop`
3. `conda install -c conda-forge rdkit`
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 = 0, 0, 4
version_info = 1, 0, 0

# Nice string for the version
__version__ = '.'.join(map(str, version_info))
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'chemprop'
copyright = '2020, Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld'
author = 'Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld'
copyright = '2020, Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam'
author = 'Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam'

# The full version, including alpha/beta/rc tags
release = '0.0.4'
release = '1.0.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ Then proceed to either option below to complete the installation. Note that on m
Option 1: Installing from PyPi
------------------------------

**Coming soon**

1. :code:`conda env create -n chemprop python=3.7`
2. :code:`conda activate chemprop`
3. :code:`conda install -c conda-forge rdkit`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
setup(
name='chemprop',
version=__version__,
author='Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld',
author='Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam',
author_email='chemprop@mit.edu',
description='Molecular Property Prediction with Message Passing Neural Networks',
long_description=long_description,
Expand Down

0 comments on commit 2f15e7c

Please sign in to comment.